-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.72 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
{
"name": "super-ecs",
"version": "2.3.0",
"description": "Entity Component System library",
"author": "Karthik VJ",
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js",
"build:watch": "rimraf dist && rollup -w -c rollup.config.js",
"test": "jest --env=node --colors",
"check-code-style": "prettier \"src/**/*.ts\"",
"fix-code-style": "prettier --write \"src/**/*.ts\"",
"generate-docs": "rimraf docs && typedoc --theme minimal --excludePrivate --excludeProtected",
"preversion": "npm test",
"version": "npm run build && npm run generate-docs && git add -A dist && git add -A docs",
"postversion": "git push && git push --tags"
},
"main": "dist/super-ecs.js",
"module": "dist/super-ecs.es.js",
"umd": "dist/super-ecs.umd.js",
"types": "dist/types/index.d.ts",
"homepage": "https://github.com/goldenratio/super-ecs",
"bugs": {
"url": "https://github.com/goldenratio/super-ecs/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/goldenratio/super-ecs.git"
},
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"rimraf": "^2.6.3",
"rollup": "^2.51.0",
"rollup-plugin-generate-declarations": "^1.1.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"tslib": "^2.2.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"rxjs": "^7.5.4"
}
}