-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 868 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": "advent-of-code-solutions",
"version": "1.0.0",
"description": "My solutions for Advent of Code http://www.adventofcode.com",
"main": "index.js",
"scripts": {
"start": "npm run test && node run.js",
"test": "npm run lint",
"create": "./copy-template.sh",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Markavian/advent-of-code-solutions.git"
},
"keywords": [
"nodejs",
"advent",
"of",
"code",
"javascript"
],
"author": "Markavian",
"license": "ISC",
"bugs": {
"url": "https://github.com/Markavian/advent-of-code-solutions/issues"
},
"homepage": "https://github.com/Markavian/advent-of-code-solutions#readme",
"dependencies": {
"denodeify": "^1.2.1",
"fs-extra": "^0.26.3",
"md5": "^2.0.0",
"request": "^2.67.0"
}
}