-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 919 Bytes
/
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
{
"name": "sam-ecs",
"version": "4.3.10",
"description": "A specialized entity component system",
"main": "./dist/index.js",
"scripts": {
"test": "jest --verbose",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"keywords": [
"entity",
"component",
"system"
],
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/therealsamf/Sam-ECS.git"
},
"author": "Samuel Faulkner",
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"jest": "^17.0.0",
"jest-cli": "^17.0.0"
},
"dependencies": {
"collections": "^5.0.5",
"lodash": "^4.17.3",
"worker-loader": "^0.7.1"
}
}