-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "graft",
"version": "0.3.1",
"description": "Full-Stack JavaScript Through Microservices",
"main": "graft.js",
"directories": {
"example": "example"
},
"scripts": {
"jshint": "jshint --exclude-path .gitignore .",
"test": "mocha -R spec 2>&1"
},
"pre-commit": [
"jshint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/GraftJS/graft.git"
},
"keywords": [
"graft",
"microservices",
"jschan",
"libchan"
],
"contributors": [
"Adrian Rossouw <adrian@daemon.co.za> (http://daemon.co.za)",
"Matteo Collina <hello@matteocollina.com> (http://matteocollina.com)",
"Peter Elger <elger.peter@gmail.com> (http://peterelger.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GraftJS/graft/issues"
},
"homepage": "https://github.com/GraftJS/graft",
"dependencies": {
"inherits": "^2.0.1",
"jschan": "^0.2.1",
"readable-stream": "^1.0.31"
},
"devDependencies": {
"jshint": "^2.5.5",
"mocha": "^1.21.4",
"must": "^0.12.0",
"pre-commit": "0.0.9",
"send": "^0.9.3",
"through2": "^0.6.3"
}
}