-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "three-d-charts",
"version": "2.0.1",
"description": "3D charts library, using Three.js",
"main": "dist/index.js",
"scripts": {
"dev": "parcel ./demos/index.html",
"build:demos": "parcel build ./demos/index.html --out-dir three-d-charts-demos --public-url ./",
"build": "parcel build src/index.ts --global ThreeDCharts",
"test": "jest"
},
"author": "forzhaokang@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/three": "^0.126.0",
"@vue/component-compiler-utils": "^3.2.0",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.2",
"jest": "^27.0.4",
"jest-canvas-mock": "^2.3.1",
"jszip": "^3.6.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.6.0",
"ts-jest": "^27.0.3",
"typescript": "^4.2.4",
"vue": "^2.6.12",
"vue-hot-reload-api": "^2.3.4",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"three": "^0.126.0"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest",
"setupFiles": [
"jest-canvas-mock"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png)$": "<rootDir>/mocks/fileMock.ts",
"controls/OrbitControls(.js)?$": "<rootDir>/mocks/OrbitControls.ts"
}
}
}