-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "node-cal",
"version": "1.0.1",
"description": "Command line JavaScript/Node calendar",
"main": "cal.js",
"scripts": {
"test": "mocha tests",
"cover": "node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha tests",
"coverage": "node ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha tests --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewEvolution/node-cal.git"
},
"eslintConfig": {
"env": {
"mocha": true,
"node": true,
"es6": true
},
"extends": "/Users/ryan/.eslint/personal.json",
"rules": {
"no-console": 0
}
},
"author": "Ryan Tanay <[email protected]> (http://portfolio.ryantanay.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewEvolution/node-cal/issues"
},
"homepage": "https://github.com/NewEvolution/node-cal#readme",
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0"
},
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3"
}
}