-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.1 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
48
49
50
51
52
{
"name": "relalg.js",
"version": "0.2.1",
"preferGlobal": true,
"author": {
"name": "Morten Fangel",
"email": "fangel@sevengoslings.net",
"url": "http://sevengoslings.net"
},
"repository": {
"type": "git",
"url": "https://github.com/fangel/RelAlg.js.git"
},
"license": "MIT",
"directories": {
"lib": "./lib/relalg",
"bin": "./bin"
},
"bin": {
"relalg": "./bin/relalg"
},
"scripts": {
"test": "grunt check"
},
"devDependencies": {
"jison": "~0.3.12",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-jison": "~1.2.0",
"grunt-contrib-jshint": "~0.6.3",
"grunt-mocha-test": "~0.6.3",
"grunt-karma": "~0.6.2",
"karma-mocha": "~0.1.0",
"karma": "~0.10.2",
"karma-requirejs": "~0.1.0",
"karma-chrome-launcher": "~0.1.0",
"karma-phantomjs-launcher": "~0.1.0",
"chai": "~1.8.0",
"karma-sinon": "0.0.1"
},
"dependencies": {
"requirejs": "~2.1.8",
"deep-equal": "0.0.0"
},
"optionalDependencies": {
"d3": "~3.3.8",
"phantomjs": "~1.9.2-2"
},
"engines": {
"node": ">=0.4.0"
}
}