-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 930 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
32
33
34
35
36
37
38
39
{
"name": "cars",
"version": "1.0.0",
"description": "A scrolling cars game",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ennmichael/car-scroller.git"
},
"author": "Enn Michael",
"license": "ISC",
"bugs": {
"url": "https://github.com/ennmichael/car-scroller/issues"
},
"homepage": "https://github.com/ennmichael/car-scroller#readme",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"@babel/polyfill": "^7.4.4"
}
}