-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
39 lines (39 loc) · 1012 Bytes
/
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
{
"name" : "cassowary",
"description": "A fast, modern JavaScript version of the Cassowary hierarchial linear constraint solver",
"author": "Alex Russell <slightlyoff@chromium.org>",
"version" : "0.0.2",
"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": "slightlyoff@chromium.org",
"url": "http://infrequently.org"
},
{
"name": "Greg J. Badros",
"url": "http://www.badros.com/greg/"
}
],
"scripts": {
"test": "node node_modules/intern/client.js config=tests/intern"
},
"dependencies": { },
"devDependencies": {
"pegjs": "*",
"uglify-js": "*",
"intern": "2.2.2"
},
"engines" : { "node" : ">=0.8.x" }
}