-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "express-torch",
"version": "0.1.7",
"license": "MIT",
"main": "build/torch.js",
"types": "./express-torch.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/JBlaak/Torch.git"
},
"scripts": {
"prepublish": "yarn build",
"build": "rm -rf ./build && tsc && yarn declarations && yarn declaration-bundle",
"pretest": "tsc --project tsconfig.test.json",
"test": "yarn lint && yarn mocha",
"lint": "tslint ./src/*.ts ./src/**/*.ts",
"mocha": "nyc --reporter=lcov --reporter=text --check-coverage --lines 100 --functions 100 --branches 100 mocha tests --recursive",
"declarations": "tsc --declaration",
"declaration-bundle": "dts-bundle --name express-torch --out ./express-torch.d.ts --main ./build/torch.d.ts && mv ./build/express-torch.d.ts ./express-torch.d.ts"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/expect.js": "^0.3.29",
"@types/express": "^4.0.33",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"dts-bundle": "^0.6.1",
"mocha": "^3.1.2",
"nyc": "^8.3.2",
"tslint": "^4.2.0",
"typescript": "^2.0.6"
},
"dependencies": {
"path-to-regexp": "^2.2.0"
}
}