-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "licensed",
"version": "1.5.0",
"description": "licensed is a command line interface to help you choose and add licenses to your projects",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src --out-dir lib/",
"build:watch": "npm run build -- --watch",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plibither8/licensed.git"
},
"keywords": [
"license",
"cli",
"mit"
],
"bin": {
"licensed": "./lib/index.js"
},
"author": "Mihir Chaturvedi",
"license": "MIT",
"bugs": {
"url": "https://github.com/plibither8/licensed/issues"
},
"homepage": "https://github.com/plibither8/licensed#readme",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"eslint": "^6.7.2"
},
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^3.0.0",
"fullname": "^4.0.1",
"fuzzy": "^0.1.3",
"inquirer": "^7.0.1",
"inquirer-autocomplete-prompt": "^1.0.1",
"meow": "^6.0.0",
"word-wrap": "^1.2.3"
},
"preferGlobal": true
}