-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1022 Bytes
/
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
{
"name": "bower-git",
"version": "0.2.1",
"description": "Replaces bower component folders with their git-repository counterpart",
"preferGlobal": true,
"bin": {
"bower-git": "./bin/cli.js"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha -w",
"lint": "npm run eslint",
"eslint": "eslint lib/index.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrgreentech/bower-git.git"
},
"keywords": [
"bower",
"git"
],
"author": "Simon Auner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrgreentech/bower-git/issues"
},
"homepage": "https://github.com/mrgreentech/bower-git#readme",
"devDependencies": {
"chai-as-promised": "^5.1.0",
"eslint": "^6.0.1",
"proxyquire": "^1.7.3"
},
"dependencies": {
"bluebird": "^3.0.6",
"chai": "^3.4.1",
"chalk": "^1.1.1",
"commander": "^2.9.0",
"del": "^2.2.0",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
}
}