-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 933 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
26
27
28
29
30
31
{
"name": "chips-challenge-js",
"version": "1.0.0",
"description": "A (WIP) HTML5/JS clone of the 1989 game Chip's Challenge.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanrossiter/chips-challenge-js.git"
},
"author": "Ryan Rossiter",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryanrossiter/chips-challenge-js/issues"
},
"homepage": "https://github.com/ryanrossiter/chips-challenge-js#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"babel-plugin-root-import": "^6.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}