-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "async-delay-planner",
"version": "2.0.0",
"description": "A module for planning delay for a series of function runs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib/**/*"],
"scripts": {
"test": "mocha -r ts-node/register test/*.test.ts",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly" : "npm test && npm run lint",
"preversion" : "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crystalbit/async-delay-planner.git"
},
"keywords": [
"async",
"delay",
"hold"
],
"author": "crystalbit",
"license": "ISC",
"bugs": {
"url": "https://github.com/crystalbit/async-delay-planner/issues"
},
"homepage": "https://github.com/crystalbit/async-delay-planner#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.10",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"nyc": {
"exclude": [
"test"
],
"reporter": [
"html",
"text"
]
}
}