forked from ecsyjs/ecsy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.62 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
80
81
82
83
84
85
86
87
88
{
"name": "ecsy",
"version": "0.1.4",
"description": "Entity Component System in JS",
"main": "build/ecsy.js",
"jsnext:main": "build/ecsy.module.js",
"module": "build/ecsy.module.js",
"types": "build/src/index.d.ts",
"scripts": {
"build": "rollup -c && tsc -p tsconfig.lib.json --emitDeclarationOnly && 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:server": "webpack-dev-server --config webpack.dev.js --verbose",
"lint": "tslint --project tsconfig.json",
"start": "npm run dev:server",
"build:dev": "webpack --config webpack.dev.js",
"test": "jest",
"travis": "npm run lint && npm run test && npm run build",
"watch:test": "jest --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": {
"@rollup/plugin-typescript": "^2.1.0",
"@types/jest": "^24.9.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"docsify-cli": "^4.4.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.12.1",
"jest": "^24.9.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"rollup": "^1.27.8",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^5.1.2",
"sass-loader": "^8.0.2",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^6.1.1",
"typedoc": "^0.15.3",
"typedoc-plugin-markdown": "^2.2.11",
"typescript": "^3.7.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}