-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "simple",
"version": "0.0.1",
"description": "Simple Enough game engine",
"module": "lib/simple.es.js",
"main": "lib/simple.cjs.js",
"jsnext:main": "lib/simple.es.js",
"scripts": {
"clean": "rm -rf ./examples/ && rm -rf ./lib/",
"examples": "cp -R src/examples . && rollup -c rollup.examples.config.js -w",
"prebuild": "eslint src test",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test"
},
"author": "daemonburrito",
"license": "GPL-3.0",
"devDependencies": {
"babel-core": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-register": "^6.23.0",
"eslint": "^3.16.1",
"express": "^4.14.1",
"hbs": "^4.0.1",
"mocha": "^3.2.0",
"raf-stub": "^2.0.0",
"rollup": "^0.41.4",
"rollup-plugin-alias": "^1.2.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-serve": "^0.1.0",
"rollup-watch": "^3.2.2"
},
"dependencies": {
"gl-matrix": "^2.3.2"
}
}