-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "extrinsic-promises",
"version": "3.0.0",
"description": "A convenient promises anti-pattern: promises you can settle from outside the promise.",
"keywords": [
"promise",
"promises",
"a+",
"reactive",
"callback"
],
"files": [
"src/index.js"
],
"main": "src/index.js",
"scripts": {
"clean": "rimraf coverage/ .nyc_output/ dist/",
"check:ci": "yamllint .travis.yml",
"check:changes": "yamllint CHANGES.yaml",
"check:readme": "remark --no-stdout README.md",
"check:js": "eslint --max-warnings 0 --no-error-on-unmatched-pattern --format codeframe ./stryker.conf.js src/ test/ \"./*.js\"",
"check": "npm-run-all check:*",
"test": "nyc mocha ./test/src/**/*.spec.js",
"verify": "npm-run-all check test",
"mutation-test": "stryker run",
"compile": "echo \"Nothing to compile, babel has been removed: OK.\"",
"ci-best": "./dev-scripts/choose-ci.sh",
"build": "npm-run-all clean compile verify",
"prepublishOnly": "cross-env NODE_ENV=production npm run build"
},
"author": "Brian Mearns",
"homepage": "https://github.com/mearns/extrinsic-promises",
"bugs": {
"url": "https://github.com/mearns/extrinsic-promises/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mearns/extrinsic-promises.git"
},
"engines": {
"node": ">=6.0.0 <22.5"
},
"license": "MIT",
"nyc": {
"reporter": [
"text",
"lcov"
],
"include": [
"src/**"
],
"all": true,
"check-coverage": true,
"statements": 70,
"branches": 70,
"functions": 70,
"lines": 70
},
"devDependencies": {
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"eslint": "7.23.0",
"eslint-config-mearns": "git+https://github.com/mearns/eslint-config-mearns.git#v0.3.0",
"mocha": "8.3.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "1.19.1",
"pretty-quick": "3.1.0",
"remark-cli": "9.0.0",
"rimraf": "3.0.2",
"sinon": "10.0.0",
"sinon-chai": "3.6.0",
"stryker": "0.35.1",
"stryker-api": "0.24.1",
"stryker-baseline-reporter": "1.0.3",
"stryker-html-reporter": "0.18.1",
"stryker-javascript-mutator": "0.14.1",
"stryker-mocha-framework": "0.15.1",
"stryker-mocha-runner": "0.17.1",
"yaml-lint": "1.2.4"
},
"dependencies": {}
}