-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 964 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
{
"name": "npm-script-context",
"version": "0.0.2",
"description": "Print environment, runtime, platform & more in npm scripts",
"license": "MIT",
"files": [
"cli.js"
],
"bin": "./cli.js",
"scripts": {
"test": "standard && depcheck",
"install": "echo from-self && node cli.js"
},
"dependencies": {
"detect-libc": "^1.0.3",
"escape-string-regexp": "^4.0.0",
"github-url-from-git": "^1.5.0",
"is-fork-pr": "^2.5.0",
"napi-build-utils": "^1.0.2",
"remote-origin-url": "^2.0.0",
"which-pm-runs": "^1.0.0"
},
"devDependencies": {
"depcheck": "^1.2.0",
"standard": "^14.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/prebuild/npm-script-context.git"
},
"homepage": "https://github.com/prebuild/npm-script-context",
"keywords": [
"prebuild",
"build",
"npm",
"script",
"install",
"environment"
],
"engines": {
"node": ">=10"
}
}