-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "geotic",
"version": "4.3.2",
"description": "entity-component-system",
"main": "build/index.js",
"type": "module",
"scripts": {
"start": "npm run build && node --enable-source-maps --experimental-modules --es-module-specifier-resolution=node example/index.js",
"build": "rollup -c",
"pretty": "prettier --write .",
"benchmark": "node --experimental-modules --es-module-specifier-resolution=node ./benchmark.js",
"test": "jest --config jest.config.json",
"prepublish": "npm run build"
},
"author": "Dalton Mills <mills.dalton@gmail.com> (http://www.ddmills.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddmills/geotic/issues"
},
"homepage": "https://github.com/ddmills/geotic#readme",
"dependencies": {
"camelcase": "6.0.0"
},
"devDependencies": {
"@babel/cli": "7.17.3",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.9.5",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"babel-jest": "25.5.0",
"chance": "1.1.4",
"jest": "27.5.1",
"prettier": "2.0.5",
"rollup": "2.7.2",
"rollup-plugin-babel": "4.4.0"
},
"files": [
"src",
"build"
],
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddmills/geotic.git"
},
"keywords": [
"Entity",
"Component",
"System",
"ES6",
"Class",
"Javascript",
"Framework",
"Game",
"Engine",
"ecs",
"ec",
"js"
]
}