-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "node-cal",
"version": "1.0.0",
"description": "",
"main": "cal.js",
"scripts": {
"test": "mocha --harmony_destructuring tests",
"cover": "node --harmony_destructuring ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha tests",
"coveralls": "npm run cover && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MAOstrander/node-cal.git"
},
"eslintConfig": {
"env": {
"mocha": true,
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"/Users/MAOstrander/.eslint/cohort-11.json"
],
"rules": {
"no-console": 0
}
},
"author": "Mathew Ostrander <mathew.ostrander@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MAOstrander/node-cal/issues"
},
"homepage": "https://github.com/MAOstrander/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",
"lodash": "^4.0.1"
}
}