forked from slightlyoff/cassowary.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name" : "cassowary",
"description": "A fast, modern JavaScript version of the Cassowary hierarchial linear constraint solver",
"author": "Alex Russell <[email protected]>",
"version" : "0.0.6",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "./bin/c.js",
"url": "https://github.com/slightlyoff/cassowary-js-refactor",
"repository" : {
"type" : "git",
"url" : "https://github.com/slightlyoff/cassowary-js-refactor.git"
},
"contributors": [
{
"name": "Alex Russell",
"email": "[email protected]",
"url": "http://infrequently.org"
},
{
"name": "Greg J. Badros",
"url": "http://www.badros.com/greg/"
},
{
"name": "Victor Genin",
"url": "http://jsdeepdive.blogspot.com"
}
],
"scripts": {
"test": "node node_modules/intern/client.js config=tests/intern"
},
"dependencies": { },
"devDependencies": {
"pegjs" : "*",
"intern": "1.2.1",
"grunt": ">=0.4.1",
"grunt-contrib-concat": ">=0.1.3",
"grunt-contrib-cssmin" : ">=0.6.1",
"grunt-contrib-watch" : ">=0.5.3",
"grunt-contrib-uglify" : ">=0.2.0"
},
"engines" : { "node" : ">=0.8.x" }
}