forked from basicallydan/forkability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "forkability",
"version": "0.18.1",
"description": "A JS module for determining the open-source-friendliness of a GitHub repository.",
"main": "./lib/app.js",
"bin": "./index.js",
"watch": {
"test": "*.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha spec/*.test.js spec/**/*.test.js --reporter spec -c -G",
"watch": "npm-watch"
},
"author": "Dan Hough <dan@danhough.com>",
"contributors": [
{
"name": "Daniel Hough",
"email": "daniel.hough@gmail.com"
},
{
"name": "Mordechai Zuber",
"email": "mez613@gmail.com"
}
],
"license": "MIT",
"repository": "git@github.com:basicallydan/forkability.git",
"dependencies": {
"browser-request": "^0.3.2",
"colors": "^1.1.2",
"commander": "^2.3.0",
"github": "^0.2.2",
"merge": "^1.2.0",
"q": "^1.0.1",
"request": "^2.42.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"interfake": "^1.9.2",
"mocha": "^2.3.4",
"nock": "^3.5.0",
"npm-watch": "^0.0.2",
"should": "^8.0.2",
"uglifyjs": "^2.4.10"
}
}