-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "2018-november",
"version": "1.7.0",
"description": "Collect all the stars as fast as possible! More and more deadly bombs will appear.",
"main": "src/index.js",
"scripts": {
"test": "npm run eslint && jest --coverage",
"eslint": "node ./node_modules/.bin/eslint ./src/*.js ./src/**/*.js ./test/**/*.test.js",
"build": "node ./node_modules/.bin/webpack -p --devtool source-map",
"watch": "node ./node_modules/.bin/webpack --devtool source-map --watch --progress",
"start": "npm run build && node ./node_modules/.bin/http-server ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebabel-games/2018-november.git"
},
"author": "Thomas Amar <[email protected]> (https://ebabel.eu)",
"license": "GPL-3.0",
"licenseUrl": "https://opensource.org/licenses/GPL-3.0",
"bugs": {
"url": "https://github.com/ebabel-games/2018-november/issues"
},
"homepage": "https://github.com/ebabel-games/2018-november#readme",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.8.0",
"har-validator": "^5.1.3",
"http-server": "^0.11.1",
"jest": "^23.6.0",
"raw-loader": "^0.5.1",
"webpack": "^3.12.0",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"phaser": "^3.15.1"
}
}