forked from vasturiano/three-spritetext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "three-spritetext",
"version": "1.0.5",
"description": "A sprite based text component for ThreeJS",
"unpkg": "dist/three-spritetext.min.js",
"main": "dist/three-spritetext.common.js",
"module": "dist/three-spritetext.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/three-spritetext.git"
},
"keywords": [
"three",
"3d",
"text",
"sprite",
"canvas",
"webgl"
],
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/three-spritetext/issues"
},
"homepage": "https://github.com/vasturiano/three-spritetext",
"scripts": {
"build": "rm -rf dist && mkdir dist && rollup -c",
"watch": "rollup -c -w",
"minify": "uglifyjs dist/three-spritetext.js -o dist/three-spritetext.min.js -c -m --comments '/Version/'",
"build-module": "rollup -c rollup.config.module.js",
"prepublish": "npm run build && npm run minify && npm run build-module"
},
"dependencies": {},
"peerDependencies": {
"three": ">=0.86.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"rollup": "^0.57.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.3.15"
}
}