-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "npm-link-extra",
"version": "3.1.0-beta.1",
"description": "npm or yarn link common modules between a project and a monorepo/multi-packages dir",
"author": "David Daniel, <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"nlx": "bin/cli.js"
},
"scripts": {
"i": "yarn install --frozen-lockfile",
"build": "yarn install --production",
"bump": "bump --prompt --commit --push",
"postbump": "editme -w",
"lint": "eslint --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "https://github.com/DavideDaniel/npm-link-extra"
},
"keywords": [
"npm",
"yarn",
"link",
"unlink",
"show",
"javascript",
"monorepos",
"node",
"nodejs"
],
"dependencies": {
"execa": "^0.8.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"editme": "1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-json": "^2.0.0",
"eslint-plugin-import": "^2.6.0",
"version-bump-prompt": "^3.1.0"
}
}