-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 728 Bytes
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
{
"name": "boggle",
"version": "1.0.0",
"description": "boggle game",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src/working --out-dir src/lib",
"go": "./node_modules/.bin/babel src/working --out-dir src/lib && http-server"
},
"author": "seeward",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"babel": "^6.23.0",
"browserify": "^16.5.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"watchify": "^3.11.1"
}
}