-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 KB
/
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
36
37
{
"name": "easterbunnyhq",
"version": "1.0.0",
"description": "AdventOfCodeDay1_EasterBunnyHQ",
"main": "gobunny.js",
"scripts": {
"test": "node test.js run",
"goBunny": "node gobunny.js run",
"watch:pug": "pug src/index.pug --out . --watch --pretty",
"sass": "node-sass --output-style compact -o . src/style.sass",
"watch:sass": "onchange 'src/*.sass' -i -v -- npm run sass",
"watch:all": "npm run watch:pug & npm run watch:sass"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autumnfjeld/AdventOfCodeDay1_EasterBunnyHQ.git"
},
"keywords": [
"'Easter",
"Bunny",
"HQ'"
],
"author": "Autumn Fjeld",
"license": "ISC",
"bugs": {
"url": "https://github.com/autumnfjeld/AdventOfCodeDay1_EasterBunnyHQ/issues"
},
"homepage": "https://github.com/autumnfjeld/AdventOfCodeDay1_EasterBunnyHQ#readme",
"dependencies": {
"make-runnable": "^1.3.6"
},
"devDependencies": {
"node-sass": "^4.5.3",
"onchange": "^3.2.1",
"pug-cli": "^1.0.0-alpha6"
}
}