-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.76 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
{
"name": "micro_test",
"version": "1.0.0",
"description": "micro_test",
"license": "UNLICENSED",
"engines": {
"node": "6.9.1"
},
"scripts": {
"check": "npm run lint && npm run build && npm run nsp check",
"test": "npm run lint && mocha --no-timeouts --colors --recursive src/**/tests/**/*.spec.js",
"testwithcheck": "npm run check && npm run test",
"testwithoutcheck": "npm run lint && npm run build && npm run test",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec -u bdd --no-timeouts --recursive src/**/tests/**/*.spec.js",
"coveralls": "npm run cover && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"preinstall_bad": "node ./preinstall.js",
"postdeploy": "npm run build && mocha --no-timeouts --colors --recursive src/**/tests/**/*.spec.js",
"lint": "npm run tslint",
"build": "npm run tsc",
"clean": "rimraf ./src/**/*.js && rimraf ./src/**/*.js.map",
"mocha": "mocha",
"tsc": "tsc",
"tsc:w": "tsc -w",
"tslint": "tslint ./**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/espray/micro_test.git"
},
"author": "",
"bugs": {
"url": "https://github.com/espray/micro_test/issues"
},
"homepage": "https://github.com/espray/micro_test#readme",
"devDependencies": {
"@types/bunyan": "0.0.34",
"@types/mocha": "^2.2.33",
"@types/nconf": "0.0.32",
"@types/should": "^8.1.30",
"@types/source-map-support": "^0.2.28",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"should": "^11.1.2",
"sinon": "^1.17.6",
"tslint": "^4.0.2",
"typescript": "^2.1.4"
},
"dependencies": {
"any-promise": "^1.3.0",
"bunyan": "^1.8.5",
"nconf": "^0.8.4",
"source-map-support": "^0.4.6"
}
}