forked from hillc255/TriangleGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 955 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
40
41
42
{
"name": "triangle-game",
"version": "0.0.0",
"description": "Triangle game",
"main": "index.js",
"scripts": {
"test": "jest",
"develop": "node_modules/.bin/watchify src/index.js -o dist/bundle.js",
"build": "node_modules/.bin/browserify src/index.js -o dist/bundle.js"
},
"author": "Nathan Sprenkle",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"browserify": "^16.2.3",
"jest": "^23.6.0",
"json5": "^2.1.0",
"regenerator-runtime": "^0.13.1",
"standard": "^12.0.1",
"watchify": "^3.11.0"
},
"dependencies": {
"jquery": "^3.3.1"
},
"standard": {
"env": [
"jest"
],
"globals": [
"$"
]
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}