-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "three-math-ts",
"version": "0.127.1",
"description": "copy from three math to ts module",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"sideEffects": false,
"files": [
"es",
"lib"
],
"scripts": {
"prepare": "rm -rf es lib && tsc -p tsconfig.es.json && tsc -p tsconfig.lib.json"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run check-type && lint-staged"
}
},
"author": {
"name": "chenhebing",
"email": "1025263994@qq.com",
"url": "https://github.com/chenhebing"
},
"repository": {
"type": "git",
"url": "https://github.com/chenhebing/three.math"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-ali": "^12.0.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"typescript": "^4.2.4"
}
}