-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "licensr",
"version": "0.1.0",
"description": "License your projects with a nice CLI tool!",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha --dir .tmp/coverage",
"coveralls": "npm install coveralls && cat .tmp/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"doc": "docco index.js -o .tmp/doc"
},
"bin": {
"licensr": "bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/quentinrossetti/licensr.git"
},
"keywords": [
"license",
"cli"
],
"author": "Quentin Rossetti <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/quentinrossetti/licensr/issues"
},
"homepage": "https://github.com/quentinrossetti/licensr",
"devDependencies": {
"chai": "^1.9.1",
"docco": "^0.6.3",
"istanbul": "^0.3.0",
"mocha": "^1.21.4"
},
"dependencies": {
"colors": "^0.6.2",
"inquirer": "^0.6.0",
"mkdirp": "^0.5.0",
"q": "^2.0.2",
"underscore": "^1.6.0"
}
}