-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.7 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "f-ecs",
"version": "0.1.0",
"private": true,
"description": "",
"main": "dist/index.js",
"umd:main": "dist/f-ecs.umd.production.js",
"module": "dist/f-ecs.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ilyaololo/f-ecs.git"
},
"bugs": {
"url": "https://github.com/ilyaololo/f-ecs/issues"
},
"homepage": "https://github.com/ilyaololo/f-ecs#readme",
"scripts": {
"build": "better-npm-run build",
"lint": "eslint --ext .ts --ext .tsx .",
"start": "better-npm-run start",
"test": "tsdx test"
},
"betterScripts": {
"build": {
"command": "tsdx build",
"env": {
"NODE_ENV": "production"
}
},
"start": {
"command": "tsdx watch",
"env": {
"NODE_ENV": "development"
}
}
},
"dependencies": {
"inversify": "^5.0.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.14",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"better-npm-run": "^0.1.1",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"husky": "^2.3.0",
"rimraf": "^2.6.3",
"serve": "^11.0.0",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"tsdx": "^0.5.11",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"engines": {
"node": "10.x",
"yarn": "1.x"
},
"author": {
"name": "ilyaololo",
"email": "[email protected]"
},
"license": "MIT"
}