forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"private": true,
"devDependencies": {
"@types/babel-core": "^6.25.5",
"@types/chai": "4.1.4",
"@types/chai-as-promised": "7.1.0",
"@types/escodegen": "0.0.6",
"@types/esprima": "^2.1.31",
"@types/estree": "0.0.38",
"@types/execa": "^0.9.0",
"@types/glob": "^5.0.29",
"@types/istanbul": "^0.4.29",
"@types/karma": "^1.7.4",
"@types/lodash": "^4.14.110",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^2.2.44",
"@types/mz": "0.0.32",
"@types/node": "^6.0.114",
"@types/rimraf": "2.0.2",
"@types/sinon": "^4.0.0",
"@types/sinon-chai": "^3.2.0",
"browserify": "^16.2.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"concurrently": "^3.6.0",
"execa": "^0.10.0",
"glob": "^7.1.1",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"lerna": "^2.11.0",
"link-parent-bin": "^0.2.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"protractor": "^5.1.2",
"rimraf": "^2.6.1",
"sinon": "^6.1.0",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.6",
"tslint": "^5.9.1",
"typescript": "~3.0.1"
},
"scripts": {
"clean": "lerna run prebuild",
"postinstall": "lerna bootstrap && link-parent-bin",
"build": "lerna run build",
"pretest": "npm run build",
"test": "lerna run test",
"posttest": "cd integrationTest && npm i && npm t && cd ..",
"clean-integration-test": "node tasks/cleanIntegrationTest.js",
"test:stryker": "lerna run test --scope stryker",
"test:stryker-api": "lerna run test --scope stryker",
"lerna-publish": "lerna publish --conventional-commits --yes --git-remote gh-publish"
},
"engines": {
"node": ">=6",
"npm": ">=5"
}
}