-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.62 KB
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": "@shed/ecs",
"version": "0.2.0",
"description": "mini entity component system framework",
"module": "dist/ecs.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist/* && rollup -c --environment DEBUG:false && yarn build:types",
"build:types": " tsc --project tsconfig.types.json",
"watch": "rimraf dist/* && rollup -c -w --environment DEBUG:false",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-typescript": "^7.7.2",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-generate-html-template": "^1.6.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@shed/utils": "^0.2.0"
},
"keywords": [
"ecs",
"entity",
"entity component system",
"game framework"
],
"author": "nshen <nshen121@gmail.com>",
"homepage": "https://github.com/nshen/mini-shed#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nshen/mini-shed.git"
},
"bugs": {
"url": "https://github.com/nshen/mini-shed/issues"
},
"license": "MIT",
"gitHead": "5163b0e9f85641db21b730a1c2032ac9605e8ec9"
}