-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "npmcli",
"version": "1.2.2",
"description": "Tool to show all availble scripts and run one of them.",
"main": "index.js",
"scripts": {
"yarn:install": "yarn",
"yarn:upgrade": "yarn upgrade",
"yarn:help": "yarn --help",
"clean": "rm -rf dist/",
"create:dist": "mkdir dist",
"copy:dist": "cp -r src/* index.js package.json README.md dist/",
"transpile": "babel dist -d dist",
"build": "npm-run-all -s clean create:dist copy:dist transpile",
"start": "cross-env NODE_ENV=production dist/index.js -x npm run build",
"publish:dist": "npm run build && npm publish dist/"
},
"bin": {
"nc": "./index.js",
"npmcli": "./index.js"
},
"repository": {
"url": "https://github.com/vitorcamachoo/npmcli",
"type": "git"
},
"author": {
"name": "Vitor Camacho",
"email": "[email protected]"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"npm",
"cli",
"cmd",
"command",
"scripts",
"runner",
"interactive",
"npmcli",
"npm-cli"
],
"preferGlobal": true,
"license": "MIT",
"dependencies": {
"inquirer": "1.2.2",
"ramda": "0.22.1"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-plugin-module-resolver": "2.3.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-latest": "6.16.0",
"babel-register": "6.16.3",
"npm-run-all": "3.1.2"
}
}