-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.6 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
{
"name": "three.highres",
"version": "0.0.1",
"description": "",
"main": "src/highres.js",
"scripts": {
"build": "npm-run-all build:*",
"build:standalone": "browserify src/highres.js -t stripify --standalone window > dist/THREE.Highres.js",
"build:compress": "uglifyjs -m -c -o dist/THREE.Highres.min.js -- dist/THREE.Highres.js",
"build:class": "cp src/highres.js dist/THREE.Highres.es6.js",
"pushall": "git add --all . && git commit -m \"update\" && git push",
"ncu": "npm-check-updates"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taseenb/THREE.Highres.git"
},
"author": {
"name": "Esteban Almiron",
"email": "[email protected]",
"url": "https://github.com/taseenb"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/taseenb/THREE.Highres/issues"
},
"homepage": "https://github.com/taseenb/THREE.Highres#readme",
"dependencies": {
"babelify": "7.3.0",
"browserify-fs": "^1.0.0",
"downloadjs": "^1.4.7",
"pngjs": "^3.3.0",
"stripify": "^6.0.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"browserify": "^16.2.3",
"npm-check-updates": "^2.12.1",
"npm-run-all": "^4.1.1",
"standard": "^12.0.1",
"uglify-es": "^3.1.2"
},
"standard": {
"globals": [
"THREE"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 100 versions"
]
}
}
]
]
}
}