forked from slightlyoff/cassowary.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1006 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
40
{
"name" : "cassowary",
"description": "A fast, modern JavaScript version of the Cassowary hierarchial linear constraint solver",
"author": "Alex Russell <[email protected]>",
"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": "[email protected]",
"url": "http://infrequently.org"
},
{
"name": "Greg J. Badros",
"url": "http://www.badros.com/greg/"
}
],
"scripts": {
"test": "cd tests; mocha *-test.js; cd parser; mocha *test.js"
},
"dependencies": {
},
"devDependencies": {
"pegjs" : "*",
"mocha": "*",
"chai": "*"
},
"engines" : { "node" : ">=0.8.x" }
}