-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.3 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.3 KB
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
{
"name": "threejs-math",
"version": "0.147.0",
"description": "Stand-alone version of three.js math with TypeScript support",
"keywords": [
"math",
"vector math",
"matrix math",
"matrix",
"vector",
"vector3",
"euler",
"quaternion",
"linear algebra"
],
"type": "module",
"main": "./build/threejs-math.cjs",
"module": "./build/threejs-math.module.js",
"typings": "types/index.d.ts",
"exports": {
".": {
"import": "./build/threejs-math.module.js",
"require": "./build/threejs-math.cjs"
}
},
"sideEffects": false,
"scripts": {
"clean": "npx rimraf -rf build",
"build": "npm run clean && rollup --no-treeshake -c utils/build/rollup.config.js",
"build:docs": "typedoc -out ./docs --hideGenerator true --cleanOutputDir false ./types/index.d.ts",
"test": "qunit -r failonlyreporter test/unit/three.source.unit.js",
"lint": "eslint src --ext js"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run check-type && lint-staged"
}
},
"author": {
"name": "ros2jsguy",
"email": "ros2jsguy@gmail.com",
"url": "https://github.com/ros2jsguy"
},
"repository": {
"type": "git",
"url": "https://github.com/ros2jsguy/threejs-math"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.6",
"eslint": "^7.24.0",
"eslint-config-ali": "^12.0.1",
"eslint-plugin-import": "^2.22.1",
"failonlyreporter": "^1.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^10.0.0",
"qunit": "^2.19.1",
"rollup": "^2.77.2",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.7.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
}
}