-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 989 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
29
30
31
32
33
34
35
36
37
{
"name": "node-timeline",
"version": "0.0.5",
"description": "A simple timeline event scheduler for Node.js",
"author": "Tracy Snell",
"license": "ISC",
"homepage": "https://github.com/delos/node-timeline",
"main": "src/node-timeline.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --recursive",
"lint": "./node_modules/.bin/eslint ./src ./test",
"check": "npm run lint && npm test && npm run coverage"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delos/node-timeline.git"
},
"keywords": [
"timeline",
"scheduler",
"schedule",
"task",
"job"
],
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "6.8.0",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"sinon": "^9.0.2"
},
"dependencies": {}
}