forked from IndigoUnited/js-dejavu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
53
54
55
{
"name": "dejavu",
"description": "A set of object-oriented tools for JavaScript",
"keywords": [
"oop",
"interface",
"class",
"abstract",
"final",
"inheritance"
],
"version": "0.2.2",
"author": "IndigoUnited <[email protected]> (http://indigounited.com)",
"main": "dist/node/node.js",
"dependencies": {
"amdefine": "~0.0.4",
"mout": "~0.2.0",
"commander": "~1.1.1",
"esprima": "~1.0.2",
"escodegen": "~0.0.15",
"inherits": "~1.0.0",
"glob": "~3.1.14",
"async": "~0.1.22"
},
"devDependencies": {
"almond": "~0.2.1",
"mocha": "~1.7.1",
"wrench": "~1.4.3",
"expect.js": "~0.2.0",
"domReady": "git://github.com/requirejs/domReady.git",
"requirejs": "~2.1.2"
},
"scripts": {
"build": "node build",
"test": "mocha -R spec test/strict && mocha -R spec test/loose",
"postinstall": "node bin/post_install.js"
},
"bugs": {
"url" : "http://github.com/IndigoUnited/dejavu/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/dejavu.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"bugs": {
"url": "https://github.com/IndigoUnited/dejavu/issues/"
},
"engine": "node >= 0.8.x"
}