forked from ecsyjs/ecsy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ecsy",
"version": "0.2.2",
"description": "Entity Component System in JS",
"main": "build/ecsy.js",
"jsnext:main": "build/ecsy.module.js",
"module": "build/ecsy.module.js",
"types": "src/index.d.ts",
"scripts": {
"build": "rollup -c && npm run docs",
"docs": "rm docs/api/_sidebar.md; typedoc --readme none --mode file --excludeExternals --plugin typedoc-plugin-markdown --theme docs/theme --hideSources --hideBreadcrumbs --out docs/api/ --includeDeclarations --includes 'src/**/*.d.ts' src; touch docs/api/_sidebar.md",
"dev:docs": "nodemon -e ts -x 'npm run docs' -w src",
"dev": "concurrently --names 'ROLLUP,DOCS,HTTP' -c 'bgBlue.bold,bgYellow.bold,bgGreen.bold' 'rollup -c -w -m inline' 'npm run dev:docs' 'npm run dev:server'",
"dev:server": "http-server -c-1 -p 8080 --cors",
"lint": "eslint src test examples",
"start": "npm run dev",
"test": "ava",
"travis": "npm run lint && npm run test && npm run build",
"watch:test": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fernandojsg/ecsy.git"
},
"keywords": [
"ecs",
"entity component system"
],
"author": "Fernando Serrano <[email protected]> (http://fernandojsg.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fernandojsg/ecsy/issues"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"sources": [
"src/**/*.js"
],
"require": [
"babel-register",
"esm"
]
},
"jspm": {
"files": [
"package.json",
"LICENSE",
"README.md",
"build/ecsy.js",
"build/ecsy.min.js",
"build/ecsy.module.js"
],
"directories": {}
},
"homepage": "https://github.com/fernandojsg/ecsy#readme",
"devDependencies": {
"ava": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.2",
"docsify-cli": "^4.4.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.2",
"http-server": "^0.11.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"rollup": "^1.29.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^5.2.0",
"typedoc": "^0.15.8",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.5"
}
}