-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 985 Bytes
/
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
{
"name": "persistent-programming",
"version": "3.1.127",
"description": "",
"repository": "github:unsegnor/persistent-programming",
"main": "index.js",
"scripts": {
"test": "npm run test-mocha",
"test-mocha": "npm run test-doubles && npm run test-domain && npm run test-adapters && npm run test-integration && npm run test-mutation",
"test-domain": "mocha domain --recursive",
"test-doubles": "mocha test-doubles --recursive",
"test-adapters": "mocha adapters --recursive",
"test-integration": "mocha test-integration --recursive",
"test-mutation": "npx stryker run",
"patch": "npm version patch && git push --follow-tags"
},
"author": "Víctor Calatayud Asensio",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/mocha-runner": "8.7.1",
"chai": "4.5.0",
"cucumber": "6.0.7",
"mocha": "11.0.1",
"expect-to-throw": "^3.0.0",
"sinon": "^19.0.0"
}
}