forked from tradfursten/adventofcode2015
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 911 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
{
"name": "adventofcode",
"version": "1.0.0",
"description": "Solutions for adventofcode.com 2015",
"main": "index.js",
"scripts": {
"test": "mocha",
"cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tradfursten/adventofcode2015.git"
},
"author": "Adam Sernheim",
"license": "MIT",
"bugs": {
"url": "https://github.com/tradfursten/adventofcode2015/issues"
},
"homepage": "https://github.com/tradfursten/adventofcode2015#readme",
"dependencies": {
"chai": "^3.4.1",
"md5": "^2.0.0",
"mocha": "^2.3.4"
},
"devDependencies": {
"coveralls": "^2.11.4",
"istanbul": "^0.4.1",
"istanbul-coveralls": "^1.0.3",
"mocha-lcov-reporter": "^1.0.0"
}
}