generated from amorriscode/advent-of-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 836 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
{
"name": "advent-of-code",
"version": "1.1.0",
"description": "A template for solving of Advent of Code in JavaScript",
"repository": "[email protected]:amorriscode/advent-of-code.git",
"author": "Anthony Morris <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"new": "bin/generate.sh",
"solve": "rollup -c ./rollup.config.js --silent && node ./dist/main.js $YEAR $DAY",
"test": "NODE_PATH=. jest ./solutions/$YEAR/$DAY"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-dynamic-import-vars": "^1.1.1",
"babel-preset-es2015": "^6.24.1",
"jest": "^26.6.3",
"rollup": "^1.27.8",
"rollup-plugin-inject-process-env": "^1.3.1",
"colors": "^1.4.0"
}
}