forked from adeoh/minigrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 942 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 942 Bytes
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
{
"name": "minigrid",
"version": "1.6.5",
"description": "Minimal 2kb zero dependency cascading grid layout",
"main": "index.js",
"scripts": {
"uglify": "uglifyjs --comments -m -c -o minigrid.min.js index.js",
"test": "browserify test.js | tape-run",
"build": "npm run test && npm run uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henriquea/minigrid.git"
},
"keywords": [
"min",
"mini",
"grid",
"minigrid",
"cascading",
"layout",
"javascript",
"minimal",
"responsive"
],
"author": "Henrique Alves <[email protected]> (http://alves.im)",
"license": "MIT",
"bugs": {
"url": "https://github.com/henriquea/minigrid/issues"
},
"homepage": "http://alves.im/minigrid",
"devDependencies": {
"phantomjs": "1.9.2-6",
"browserify": "^11.0.1",
"tape": "^4.0.2",
"tape-run": "^1.1.0",
"uglify-js": "^2.4.24"
}
}