forked from WesUnwin/obj-file-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1002 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
35
36
37
38
39
{
"name": "obj-file-parser",
"version": "0.5.3",
"description": "Wavefront 3D Object File (.OBJ) Parser",
"main": "./dist/OBJFile.js",
"scripts": {
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"test": "jest",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WesUnwin/obj-file-parser.git"
},
"keywords": [
"obj",
"file",
"3D",
"parser",
"wavefront",
"mtl"
],
"author": "Wesley Unwin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WesUnwin/obj-file-parser/issues"
},
"homepage": "https://github.com/WesUnwin/obj-file-parser#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4"
}
}