This repository has been archived by the owner on Oct 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
104 lines (104 loc) · 2.46 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "3dio",
"version": "2.1.0",
"description": "toolkit for interior apps",
"keywords": [
"3d",
"aframe",
"cardboard",
"components",
"oculus",
"vive",
"rift",
"vr",
"WebVR",
"WegGL",
"three",
"three.js",
"3D model",
"api",
"visualization",
"furniture",
"real estate",
"interior",
"building",
"architecture",
"3d.io"
],
"homepage": "https://3d.io",
"repository": "archilogic-com/3dio-js",
"license": "MIT",
"author": {
"name": "archilogic",
"email": "[email protected]",
"url": "https://archilogic.com"
},
"main": "index.js",
"scripts": {
"start": "gulp dev-browser",
"dev-browser": "gulp dev-browser",
"dev-node": "gulp dev-node",
"jshint": "gulp jshint",
"test": "jest --coverage",
"dev-build": "gulp dev-build",
"release-build": "gulp release-build",
"release-check": "jest && gulp jshint && gulp release-build",
"release": "gulp release"
},
"dependencies": {
"bluebird": "^3.5.1",
"form-data": "^2.3.1",
"js-logger": "^1.4.1",
"lodash": "^4.17.4",
"node-fetch": "2.0.0-alpha.8",
"pako": "^1.0.5",
"performance-now": "^2.1.0",
"rxjs": "^5.4.3",
"three": "^0.85.2",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.26.0",
"chalk": "^2.1.0",
"confirm-cli": "^0.4.0",
"del": "^3.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-git": "^2.4.2",
"gulp-gzip": "^1.4.0",
"gulp-jshint": "^2.0.4",
"gulp-less": "^3.3.2",
"gulp-s3": "0.11.0",
"gulp-watch": "^4.3.11",
"jest": "^22.4.3",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"lite-server": "^2.3.0",
"moment": "^2.19.3",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-less": "^0.1.3",
"rollup-plugin-node-resolve": "^3.0.0",
"through2": "^2.0.3",
"uglify-js": "^3.1.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"testMatch": [
"**/test/**/*.js",
"**/__tests__/**/*.js?(x)",
"**/?(*.)(spec|test).js?(x)"
]
}
}