forked from xkizer/mocha-isolation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "mocha-isolation",
"version": "0.1.5",
"description": "Provides process isolation for each test file running in mocha",
"main": "index.js",
"author": "ROK",
"license": "MIT",
"homepage": "https://github.com/now-ims/mocha-isolation#readme",
"bugs": {
"url": "https://github.com/now-ims/mocha-isolation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/now-ims/mocha-isolation.git"
},
"keywords": [
"mocha",
"test",
"process",
"isolation",
"per-file",
"child_process",
"fork",
"testing"
],
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/should": "^13.0.0",
"eslint": "^4.19.0",
"should": "^13.2.1",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
},
"dependencies": {
"commander": "*",
"mocha": "*",
"colors": "*"
},
"scripts": {
"test": "npm run eslint && npm run mocha && npm run mocha-isolation",
"eslint": "./node_modules/.bin/eslint ./src/",
"mocha": "./node_modules/.bin/mocha test/**/*.test.?s",
"mocha-isolation": "./node_modules/.bin/mocha --require ./register test/**/*.test.?s test/**/*.test-isolated.?s",
"npm-push": "npm test && npm version patch && npm publish -tag latest --access public && git push"
}
}