-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 1.9 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
{
"name": "ts-promise-cache",
"version": "0.9.0",
"license": "MIT",
"description": "a loading cache for promises",
"repository": "https://github.com/normartin/ts-promise-cache",
"bugs": "https://github.com/normartin/ts-promise-cache/issues",
"keywords": [
"promise",
"cache",
"typescript"
],
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"main": "dist/promise-cache.js",
"types": "dist/promise-cache.d.ts",
"engines": {
"node": ">=8"
},
"scripts": {
"cleanup": "del-cli dist reports .nyc_output",
"prebuild": "npm run cleanup",
"build": "tsc",
"test": "mocha",
"posttest": "npm run tslint",
"tslint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"coverage": "nyc mocha",
"validate": "npm run tslint && npm run coverage",
"prepublishOnly": "npm run validate && npm run build",
"mutation-test": "stryker run"
},
"devDependencies": {
"@stryker-mutator/core": "^3.3.1",
"@stryker-mutator/mocha-framework": "^3.3.1",
"@stryker-mutator/mocha-runner": "^3.3.1",
"@stryker-mutator/typescript": "^3.3.1",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.10.2",
"chai": "^4.2.0",
"del-cli": "^3.0.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"ts-retry-promise": "^0.5.0",
"tslint": "^6.1.3",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^4.0.2"
},
"nyc": {
"all": true,
"check-coverage": true,
"per-file": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true,
"report-dir": "reports/coverage"
}
}