-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 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
{
"name": "@gl-widget/gl-widget",
"version": "1.0.14",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"dev": "rollup -c -w --environment NODE_ENV:development",
"build": "rollup -c --environment NODE_ENV:production",
"push": "npm run build && npm version patch && npm publish --access=public",
"dev-link": "npm link"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.6.2",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-loader": "^8.0.6",
"cz-conventional-changelog": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.3.0",
"jest-webgl-canvas-mock": "^0.2.3",
"json-loader": "^0.5.7",
"normals": "^1.1.0",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-loader": "^6.1.2",
"typescript": "^3.6.3"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.6.2",
"bunny": "^1.0.1",
"core-js": "^3.2.1",
"parse-wavefront-obj": "^1.0.3",
"raw-loader": "^3.1.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"xhr": "^2.5.0",
"xml-parse-from-string": "^1.0.1"
},
"jest": {
"setupFiles": [
"jest-webgl-canvas-mock"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}