-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "pixel-grid",
"version": "1.0.2",
"description": "render a grid of little squares",
"main": "index.js",
"scripts": {
"test": "standard && tape test.js | tap-spec",
"start": "budo example.js",
"bundle": "browserify demo.js -o demo/bundle.js",
"deploy": "npm run bundle && surge demo pixel-grid.surge.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeman-lab/pixel-grid.git"
},
"keywords": [
"visualization",
"pixels",
"webgl",
"squares",
"table",
"matrix",
"gl"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/freeman-lab/pixel-grid/issues"
},
"homepage": "https://github.com/freeman-lab/pixel-grid#readme",
"dependencies": {
"flatten": "^1.0.2",
"is-array": "^1.0.1",
"is-number": "^2.1.0",
"is-string": "^1.0.4",
"mouse-position": "^2.0.1",
"parse-color": "^1.0.0",
"regl": "^0.11.0"
},
"devDependencies": {
"standard": "^7.1.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0"
}
}