-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "famous-git-cache",
"version": "0.1.6",
"description": "Module for git cloning repos to a cache folder on disk and managing that cache",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/FamousTools/famous-git-cache.git"
},
"scripts": {
"test": "npm run-script lint; ./node_modules/.bin/tap test/*.js",
"watch": "./node_modules/.bin/nodemon --ignore node_modules/ -e js,json --exec 'npm test'",
"lint": "./node_modules/.bin/eslint **/*.js",
"prepublish": "npm ls && npm test"
},
"author": "Andrew de Andrade <[email protected]>",
"devDependencies": {
"eslint": "^0.10.0",
"nodemon": "^1.2.0",
"tap": "^0.4.13",
"tape": "^3.0.0"
},
"dependencies": {
"async": "^0.9.0",
"minimist": "^1.1.0",
"mkdirp": "^0.5.0",
"rimraf": "^2.2.8",
"which": "^1.0.5",
"xtend": "^4.0.0"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">=0.10.28",
"npm": ">=1.4.10"
},
"license": "MPLv2"
}