-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 928 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
{
"name": "25days",
"version": "1.0.0",
"description": "This repo contains my solutions to the advent of code problems. By running node path/to/file.js on any of these files they should run.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sharper044/adventOfCode2018.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sharper044/adventOfCode2018/issues"
},
"homepage": "https://github.com/Sharper044/adventOfCode2018#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"rimraf": "^2.6.2"
}
}