forked from 8tentaculos/jsPacman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "jsPacman",
"version": "0.2.0",
"description": "HTML5 / JavaScript DOM based remake of the classic Ms Pac-Man game",
"main": "dist/index.html",
"scripts": {
"start": "webpack-dev-server",
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"clean": "rimraf ./dist ./tmp",
"test": "webpack test/*.js -o tmp/test.js && mocha --require jsdom-global/register --reporter nyan tmp/test.js",
"demo:publish": "npm run test && npm run build && cp CNAME ./dist/ && cd dist && git init && git commit --allow-empty -m 'Update demo' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -m 'Update demo' && git push https://github.com/8tentaculos/jsPacman.git gh-pages --force"
},
"repository": "github:8tentaculos/jsPacman",
"homepage": "https://pacman.js.org",
"bugs": "https://github.com/8tentaculos/jsPacman/issues",
"keywords": [
"game",
"javascript",
"html5",
"pacman"
],
"author": "Alberto Masuelli <[email protected]> (https://github.com/8tentaculos)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"mocha": "^6.1.4",
"rimraf": "^3.0.2",
"style-loader": "^0.21.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"rasti": "0.0.14"
}
}