-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 843 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
33
34
35
{
"name": "aoc-2016",
"version": "1.0.0",
"description": "Advent of code 2016",
"main": "index.js",
"scripts": {
"test": "mocha --opts mocha.opts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alocquet/aoc-2016.git"
},
"author": "alocquet",
"license": "ISC",
"bugs": {
"url": "https://github.com/alocquet/aoc-2016/issues"
},
"homepage": "https://github.com/alocquet/aoc-2016#readme",
"devDependencies": {
"@types/chai": "3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/graceful-fs": "2.0.29",
"@types/mocha": "2.2.33",
"@types/sinon": "1.16.32",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"mocha": "3.2.0",
"sinon": "1.17.6",
"ts-node": "1.7.0",
"typescript": "2.1.4"
},
"dependencies": {
"graceful-fs": "4.1.11"
}
}