-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.21 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "aoc-2016",
"version": "1.0.0",
"description": "Challenges for aoc 2016",
"main": "index.js",
"scripts": {
"one": "node one/one.js",
"one-2": "node one/two",
"one-test": "./node_modules/mocha/bin/_mocha 'one/*.test.js'",
"two": "node two/one.js",
"two-2": "node two/two",
"two-test": "./node_modules/mocha/bin/_mocha 'two/*.test.js'",
"three": "node three/one.js",
"three-2": "node three/two.js",
"three-test": "./node_modules/mocha/bin/_mocha 'three/*.test.js'",
"four": "node four/one.js",
"four-2": "node four/two.js",
"four-test": "./node_modules/mocha/bin/_mocha 'four/*.test.js'",
"five": "node five/one.js",
"five-2": "node five/two.js",
"five-test": "./node_modules/mocha/bin/_mocha 'five/*.test.js'",
"six": "node six/one.js",
"six-2": "node six/two.js",
"six-test": "./node_modules/mocha/bin/_mocha 'six/*.test.js'",
"seven": "node seven/one.js",
"seven-2": "node seven/two.js",
"seven-test": "./node_modules/mocha/bin/_mocha 'seven/*.test.js'",
"eight": "node eight/one.js",
"eight-2": "node eight/two.js",
"eight-test": "./node_modules/mocha/bin/_mocha 'eight/*.test.js'",
"nine": "node nine/one.js",
"nine-2": "node nine/two.js",
"nine-test": "./node_modules/mocha/bin/_mocha 'nine/*.test.js'",
"ten": "node ten/one.js",
"ten-2": "node ten/two.js",
"ten-test": "./node_modules/mocha/bin/_mocha 'ten/*.test.js'",
"eleven": "node eleven/one.js",
"eleven-2": "node eleven/two.js",
"eleven-test": "./node_modules/mocha/bin/_mocha 'eleven/*.test.js'",
"twelve": "node twelve/one.js",
"twelve-2": "node twelve/two.js",
"twelve-test": "./node_modules/mocha/bin/_mocha 'twelve/*.test.js'",
"thirteen": "node thirteen/one.js",
"thirteen-2": "node thirteen/two.js",
"thirteen-test": "./node_modules/mocha/bin/_mocha 'thirteen/*.test.js'",
"fourteen": "node fourteen/one.js",
"fourteen-2": "node fourteen/two.js",
"fourteen-test": "./node_modules/mocha/bin/_mocha 'fourteen/*.test.js'",
"fifteen": "node fifteen/one.js",
"fifteen-2": "node fifteen/two.js",
"fifteen-test": "./node_modules/mocha/bin/_mocha 'fifteen/*.test.js'",
"sixteen": "node sixteen/one.js",
"sixteen-2": "node sixteen/two.js",
"sixteen-test": "./node_modules/mocha/bin/_mocha 'sixteen/*.test.js'",
"seventeen": "node seventeen/one.js",
"seventeen-2": "node seventeen/two.js",
"seventeen-test": "./node_modules/mocha/bin/_mocha 'seventeen/*.test.js'",
"eighteen": "node eighteen/one.js",
"eighteen-2": "node eighteen/two.js",
"eighteen-test": "./node_modules/mocha/bin/_mocha 'eighteen/*.test.js'",
"nineteen": "node nineteen/one.js",
"nineteen-2": "node nineteen/two.js",
"nineteen-test": "./node_modules/mocha/bin/_mocha 'nineteen/*.test.js'",
"twenty": "node twenty/one.js",
"twenty-2": "node twenty/two.js",
"twenty-test": "./node_modules/mocha/bin/_mocha 'twenty/*.test.js'",
"twentyone": "node twentyone/one.js",
"twentyone-2": "node twentyone/two.js",
"twentyone-test": "./node_modules/mocha/bin/_mocha 'twentyone/*.test.js'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}