-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 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
48
49
50
51
{
"name": "pkl",
"version": "1.0.0",
"description": "A package linker for lerna monorepos - use it to install packages from your monorepo into your application",
"main": "index.js",
"bin": {
"pkl": "./index.js"
},
"scripts": {
"lint": "eslint .",
"lint.markdown": "prettier --check \"**/*.md\" --prose-wrap \"always\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alistairjcbrown/pkl.git"
},
"keywords": [
"pkl",
"lerna",
"npm",
"yarn",
"monorepo",
"monorepos",
"package",
"modules",
"install",
"dependency",
"link",
"cli",
"tool",
"utility",
"command-line",
"development"
],
"author": "Alistair Brown <[email protected]> (http://alistairjcbrown.com)",
"license": "MIT",
"dependencies": {
"commander": "^5.0.0",
"ora": "^4.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.4",
"prettier": "^2.0.2"
}
}