-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
49
50
51
52
{
"name": "whether-manager",
"version": "0.0.0",
"description": "like an ECS, but cooler by about a fifth",
"main": "whether-manager.js",
"jsnext:main": "src/whether-manager.js",
"typings": "whether-manager.d.ts",
"typescript": {
"definition": "whether-manager.d.ts"
},
"scripts": {
"test": "gulp test",
"coverage": "gulp coverage",
"benchmark": "cd scripts && js benchmark.js > benchmarks/sm.json && node benchmark.js > benchmarks/v8.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Permutatrix/whether-manager.git"
},
"keywords": [
"ecs",
"game"
],
"author": "Permutator <permutatorem@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Permutatrix/whether-manager/issues"
},
"homepage": "https://github.com/Permutatrix/whether-manager#readme",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-minimal": "^2.0.0",
"codecov": "^1.0.1",
"colors": "^1.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"must": "^0.13.1",
"rollup-plugin-istanbul": "^1.0.0",
"rollup-stream": "^1.8.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"files": [
"src",
"whether-manager.js",
"LICENSE",
"README.md",
"package.json"
]
}