-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "ensy",
"version": "1.5.2",
"description": "Entity System for JavaScript",
"homepage": "https://github.com/adngdb/entity-system-js",
"author": "Adrian Gaudebert <[email protected]> (http://adrian.gaudebert.fr)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adngdb/entity-system-js"
},
"files": [
"entity-manager.js"
],
"main": "entity-manager.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"amdefine": "1.0.1",
"benchmark": "2.1.4",
"chai": "4.2.0",
"markdox": "0.1.10",
"mocha": "7.1.2",
"rollup": "1.16.2",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-terser": "^5.3.0"
},
"scripts": {
"test": "mocha `find test -name 'test_*.js'` --reporter spec",
"test-w": "mocha `find test -name 'test_*.js'` --reporter spec --growl --watch",
"test-browser": "xdg-open test/index.html",
"build": "rollup -c",
"build_doc": "markdox src/*.js --output=docs/api.md"
}
}