-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "catch-and-run",
"version": "1.0.0",
"description": "Catch and Run game! DOOM 1993 Inspired",
"main": "./app/javascripts/main.js",
"scripts": {
"build": "webpack --progress -p | stylus -u nib -c ./app/stylus/ --out ./assets/stylesheets",
"watch": "webpack --progress --watch | stylus -u nib -w ./app/stylus/ --out ./assets/stylesheets",
"server": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nikodermus/catch-and-run-game.git"
},
"keywords": [
"game",
"doom",
"nikodermus"
],
"author": "Nicolas M. Pardo | Nikodermus",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nikodermus/catch-and-run-game/issues"
},
"homepage": "https://github.com/Nikodermus/catch-and-run-game#readme",
"dependencies": {
"howler": "^2.0.5",
"html2canvas": "^0.5.0-beta4",
"jquery": "^3.2.1",
"js-cookie": "^2.1.4",
"moment": "^2.19.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"nib": "^1.1.2",
"stylus": "^0.54.5",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}