UNPKG

1.76 kBJSONView Raw
1{
2 "name": "super-ecs",
3 "version": "2.3.0",
4 "description": "Entity Component System library",
5 "author": "Karthik VJ",
6 "scripts": {
7 "build": "rimraf dist && rollup -c rollup.config.js",
8 "build:watch": "rimraf dist && rollup -w -c rollup.config.js",
9 "test": "jest --env=node --colors",
10 "check-code-style": "prettier \"src/**/*.ts\"",
11 "fix-code-style": "prettier --write \"src/**/*.ts\"",
12 "generate-docs": "rimraf docs && typedoc --theme minimal --excludePrivate --excludeProtected",
13 "preversion": "npm test",
14 "version": "npm run build && npm run generate-docs && git add -A dist && git add -A docs",
15 "postversion": "git push && git push --tags"
16 },
17 "main": "dist/super-ecs.js",
18 "module": "dist/super-ecs.es.js",
19 "umd": "dist/super-ecs.umd.js",
20 "types": "dist/types/index.d.ts",
21 "homepage": "https://github.com/goldenratio/super-ecs",
22 "bugs": {
23 "url": "https://github.com/goldenratio/super-ecs/issues"
24 },
25 "license": "MIT",
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/goldenratio/super-ecs.git"
29 },
30 "files": [
31 "dist/",
32 "package.json",
33 "README.md",
34 "LICENSE"
35 ],
36 "devDependencies": {
37 "@rollup/plugin-commonjs": "^19.0.0",
38 "@rollup/plugin-json": "^4.1.0",
39 "@rollup/plugin-node-resolve": "^13.0.0",
40 "@rollup/plugin-typescript": "^8.2.1",
41 "@types/jest": "^26.0.23",
42 "jest": "^27.0.4",
43 "prettier": "^2.3.1",
44 "rimraf": "^2.6.3",
45 "rollup": "^2.51.0",
46 "rollup-plugin-generate-declarations": "^1.1.1",
47 "rollup-plugin-sourcemaps": "^0.6.3",
48 "ts-jest": "^27.0.3",
49 "ts-loader": "^9.2.3",
50 "tslib": "^2.2.0",
51 "typedoc": "^0.20.36",
52 "typescript": "^4.2.4"
53 },
54 "dependencies": {
55 "rxjs": "^7.5.4"
56 }
57}