-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
42
43
44
45
46
47
48
{
"name": "js-game-engine",
"version": "1.0.0",
"main": "script.js",
"scripts": {
"build-server": "babel src/ -d src-es5/ -w",
"run-server": "node src-es5/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:JacobShirley95/js-game-engine.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/JacobShirley95/js-game-engine",
"dependencies": {
"ws": "^1.1.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.40",
"@babel/plugin-syntax-import-meta": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-stage-3": "^7.0.0-beta.40",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^15.1.0",
"bufferutil": "^3.0.3"
},
"description": "",
"optionalDependencies": {
"bufferutil": "^3.0.3",
"utf-8-validate": "^4.0.0"
},
"babel": {
"plugins": [
"babel-plugin-dynamic-import-node",
"@babel/plugin-syntax-import-meta",
"./dev/babel-plugin-import-meta-node/src/index.js",
"babel-plugin-transform-es2015-modules-commonjs"
]
}
}