-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
121 lines (121 loc) · 3.29 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ecsy-babylon",
"version": "0.8.0",
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/kaliber5/ecsy-babylon"
},
"license": "MIT",
"author": "Simon Ihmig <simon.ihmig@kaliber5.de>",
"sideEffects": false,
"main": "index.cjs.js",
"module": "index.js",
"typings": "index.d.ts",
"scripts": {
"clean": "rimraf world.js world.d.ts index.js index.cjs.js index.d.ts *.map components systems -private",
"prebuild": "yarn clean",
"build": "rollup -c rollup.config.js && tsc -b tsconfig.build.json",
"docs": "typedoc --out docs --target es6 --theme minimal --mode file src",
"lint": "yarn lint:ts && yarn lint:eslint",
"lint:eslint": "eslint . --ext .js,.ts",
"lint:ts": "tsc --noEmit",
"precommit": "lint-staged",
"prepublishOnly": "yarn build",
"postpublish": "yarn clean",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"start": "rollup -c rollup.config.js -w",
"test": "jest",
"test:prod": "yarn run lint && yarn run test -- --no-cache",
"test:watch": "jest --coverage --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"yarn lint:eslint --fix"
]
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@babylonjs/core": "^5.6.1",
"@babylonjs/materials": "^5.6.1",
"ecsy": "^0.4.2"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "3.1.0",
"@rollup/plugin-typescript": "8.3.3",
"@types/jest": "27.5.2",
"@types/lodash-es": "4.17.6",
"@types/node": "15.12.5",
"@types/rollup-plugin-sourcemaps": "0.5.0",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"babel-jest": "27.5.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-import-resolver-typescript": "3.2.5",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"husky": "4.3.8",
"jest": "27.5.1",
"jest-config": "27.5.1",
"jest-extended": "0.11.5",
"lint-staged": "11.2.6",
"prettier": "2.7.1",
"release-it": "14.14.3",
"release-it-lerna-changelog": "4.0.1",
"rimraf": "3.0.2",
"rollup": "2.76.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-sourcemaps": "0.6.3",
"ts-jest": "27.1.5",
"typedoc": "0.22.18",
"typescript": "4.6.4"
},
"engines": {
"node": "12.* || >= 14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "12.22.12",
"yarn": "1.22.19"
}
}