-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "@date/generator",
"version": "0.2.0",
"description": "Calculate dates with easy to read helper functions",
"main": "lib/index.js",
"files": [
"lib/index.js"
],
"keywords": [
"generate",
"calculate",
"dates",
"date",
"chain",
"functions"
],
"author": "Eli Doran <eli+npm@elidoran.com>",
"license": "MIT",
"scripts": {
"test": "mocha --require coffee-script/register --reporter spec --bail --check-leaks test/lib/*.coffee",
"test6": "nave use 6 npm test",
"test8": "nave use 8 npm test",
"test10": "nave use 10 npm test",
"test-all": "npm run test6 && npm run test8 && npm run test10",
"coverage": "istanbul cover -x 'build/**' _mocha -- --require coffee-script/register -R spec test/lib/*.coffee"
},
"repository": {
"type": "git",
"url": "git://github.com/elidoran/node-date-generator.git"
},
"bugs": "http://github.com/elidoran/node-date-generator/issues",
"devDependencies": {
"coffee-script": "^1.12.7",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
},
"dependencies": {},
"engines": {
"node": ">=6"
}
}