-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 894 Bytes
/
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
{
"name": "three-draco3d",
"version": "0.1.0",
"description": "ThreeJS Geometry encoder decoder for draco3d",
"main": "lib/index.js",
"author": "Yogesh Sajanikar",
"license": "MIT",
"dependencies": {
"draco3d": "^1.3.4",
"three": "^0.111.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-flow": "^7.7.4",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"flow-bin": "^0.113.0",
"jest": "^24.9.0",
"prettier-eslint": "^9.0.1"
},
"scripts": {
"build": "babel src/ -d lib/",
"prepublishOnly": "yarn run build",
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest"
}
}