-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.08 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.08 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "fae",
"version": "0.0.1",
"description": "A next-gen 2D renderer for the web.",
"author": "Chad Engler <chad@pantherdev.com>",
"license": "MIT",
"main": "./dist/fae.js",
"homepage": "https://github.com/Fae/fae#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Fae/fae.git"
},
"bugs": {
"url": "https://github.com/Fae/fae/issues"
},
"scripts": {
"clean": "rm -rf dist/ entry-*",
"hash": "git rev-parse HEAD > .commit",
"build": "set NODE_ENV=production && npm run hash && webpack -p --config ./build/webpack.config.js --output-filename fae.min.js --progress",
"dev": "npm run hash && webpack -d --config ./build/webpack.config.js --output-filename fae.js --progress --colors",
"watch": "npm run dev -- --watch",
"lint": "eslint plugins/ build/",
"start": "npm run build",
"test": "npm run lint && npm run dev && npm run test-dev -- --single-run",
"test-ci": "npm run test-dev -- --single-run",
"test-dev": "karma start build/karma.conf.js",
"docs": "jsdoc -c build/jsdoc.conf.json -R README.md"
},
"dependencies": {
"@fae/ecs": "^1.0.2",
"bit-twiddle": "^1.0.2",
"core-js": "^2.4.1",
"ismobilejs": "^0.4.0",
"mini-signals": "^1.1.1"
},
"devDependencies": {
"@englercj/code-style": "^1.0.6",
"async": "^2.0.1",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-loose": "^7.0.0",
"benchmark": "^2.1.1",
"chai": "^3.5.0",
"eslint": "^3.3.1",
"glslify-loader": "^1.0.2",
"jaguarjs-jsdoc": "^1.0.0",
"jsdoc": "git+https://github.com/jsdoc3/jsdoc.git#master",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-sauce-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.3",
"mocha": "^3.0.2",
"preprocess-loader": "^0.2.0",
"raw-loader": "^0.5.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.2"
},
"private": true
}