forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1019 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
40
41
42
43
44
45
46
47
48
{
"name": "libnpmorg",
"version": "2.0.3",
"description": "Programmatic api for `npm org` commands",
"author": "Kat Marchán <[email protected]>",
"keywords": [
"libnpm",
"npm",
"package manager",
"api",
"orgs",
"teams"
],
"license": "ISC",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"lint": "standard",
"test": "tap",
"posttest": "npm run lint"
},
"files": [
"index.js"
],
"tap": {
"check-coverage": true
},
"devDependencies": {
"minipass": "^3.1.1",
"nock": "^12.0.1",
"standard": "^14.3.1",
"tap": "^14.10.6"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/libnpmorg.git"
},
"bugs": "https://github.com/npm/libnpmorg/issues",
"homepage": "https://npmjs.com/package/libnpmorg",
"dependencies": {
"aproba": "^2.0.0",
"npm-registry-fetch": "^14.0.0"
},
"engines": {
"node": ">=10"
}
}