-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 993 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 993 Bytes
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
{
"name": "adventofcode",
"description": "Solving adventofcode.com puzzles with NodeJS and ES6.",
"repository": {
"type": "git",
"url": "https://github.com/NiXXeD/adventofcode"
},
"version": "1.0.0",
"author": "Andy Christianson",
"license": "MIT",
"scripts": {
"start": "node index",
"test-2015": "mocha 2015/test.js --timeout 30000",
"test-2016": "mocha 2016/test.js --timeout 30000",
"test-2017": "mocha 2017/test.js --timeout 30000",
"test-2018": "mocha 2018/test.js --timeout 30000",
"test-2019": "mocha 2019/test.js --timeout 30000",
"test-2020": "mocha 2020/test.js --timeout 30000",
"test-all": "mocha */test.js --timeout 30000",
"test": "npm run test-2020",
"setup": "node setup"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"chalk": "4.1.0",
"js-combinatorics": "0.6.1",
"lodash": "4.17.21",
"md5": "2.3.0",
"mocha": "8.2.1",
"moment": "2.30.1",
"sleep": "6.3.0"
}
}