-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@vanioinformatika/appxray",
"version": "1.0.0",
"author": "Kovács Vince <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Gyula Szalai",
"email": "[email protected]"
},
{
"name": "Kovács Vince",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vanioinformatika/node-appxray.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">6.9"
},
"scripts": {
"compile": "tsc",
"coverage": "nyc npm run test",
"coverage:ci": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"test": "mocha --exit --recursive --compilers ts:ts-node/register test/**/*.spec.ts",
"tslint": "tslint src/**/*.ts",
"preversion": "git push && npm test",
"version": "npm run compile && git add -A dist",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@types/bluebird": "^3.5.15",
"@types/node": "^8.0.34",
"bluebird": "^3.5.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "^2.2.43",
"@types/sinon": "^2.3.6",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"dirty-chai": "^2.0.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.3"
}
}