-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 911 Bytes
/
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
{
"name": "shrimport",
"version": "1.0.1",
"author": "Zack McCartney",
"repository": "github:zemccartney/shrimport",
"description": "🦐 📦 — Install local packages",
"keywords": [
"install",
"dependency management",
"local"
],
"license": "BSD-3-Clause",
"bin": "bin.js",
"engines": {
"node": ">=12"
},
"dependencies": {
"@hapi/bossy": "5.x.x",
"@hapi/bounce": "2.x.x",
"execa": "4.x.x",
"joi": "17.x.x"
},
"devDependencies": {
"@hapi/code": "8.x.x",
"@hapi/lab": "23.x.x",
"c8": "7.x.x",
"eslint": "7.x.x",
"eslint-config-standard": "14.x.x",
"eslint-plugin-import": "2.x.x",
"eslint-plugin-node": "11.x.x",
"eslint-plugin-promise": "4.x.x",
"eslint-plugin-standard": "4.x.x"
},
"scripts": {
"coverage": "c8 --check-coverage npm test",
"lint": "eslint .",
"test": "lab test/index.js -L"
}
}