-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "blotter.js",
"version": "0.1.0",
"description": "A JavaScript API for drawing unconventional text effects on the web.",
"author": {
"name": "Bradley Griffith",
"email": "[email protected]",
"url": "http://bradley.computer"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bradley/blotter/blob/master/license.txt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bradley/blotter"
},
"main": "build/blotter.js",
"unpkg": "build/blotter.min.js",
"files": [
"build/blotter.js",
"build/blotter.min.js"
],
"homepage": "http://bradley.github.io/Blotter",
"bugs": {
"url": "https://github.com/bradley/blotter/issues"
},
"keywords": [
"webgl",
"glsl",
"glsl-shaders",
"javascript",
"typography",
"text",
"css",
"animation",
"design",
"creative-coding",
"lsd"
],
"scripts": {
"build-custom-three": "npx browserify utils/three_build.js -p [ threejs-tree-shake --loose ] > third_party/three/three.custom.js",
"build": "npm run build-custom-three && grunt"
},
"dependencies": {
"three": "^0.89.0"
},
"devDependencies": {
"browserify": "^15.2.0",
"grunt": "^0.4.0",
"grunt-closure-tools": "^0.9.0",
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-watch": "^0.6.0",
"npx": "^9.7.1",
"threejs-tree-shake": "^1.0.0"
}
}