forked from bradley/Blotter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "blotter",
"version": "0.1.0",
"description": "A JavaScript API for drawing unconventional text effects on the web.",
"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"
},
"keywords": [
"webgl",
"glsl",
"glsl-shaders",
"javascript",
"typography",
"text",
"css",
"animation",
"design",
"creative-coding",
"lsd"
],
"homepage": "http://bradley.github.io/Blotter",
"author": {
"name": "Bradley Griffith",
"email": "bradley.j.griffith@gmail.com",
"url": "http://bradley.computer"
},
"main": "build/blotter.js",
"repository": {
"type": "git",
"url": "https://github.com/bradley/blotter"
},
"bugs": {
"url": "https://github.com/bradley/blotter/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bradley/blotter/blob/master/license.txt"
}
],
"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"
}
}