-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 880 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 880 Bytes
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
{
"name": "nave",
"author": "Isaac Z. Schlueter <i@izs.me>",
"description": "Virtual Environments for Node",
"version": "3.5.6",
"preferGlobal": true,
"bin": {
"nave": "nave.sh"
},
"scripts": {
"test": "bash test/run.sh | tap -",
"precov": "rm -rf ./coverage",
"cov": "COV=1 bash test/run.sh",
"cov:noopen": "COV=1 bash test/run.sh",
"postcov": "open coverage-all/kcov-merged/nave.sh.*.html",
"snap": "SNAPSHOT=1 bash test/run.sh | tap -",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags"
},
"license": "BlueOak-1.0.0",
"files": [
"nave.sh"
],
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/isaacs/nave.git"
},
"devDependencies": {
"tap": "^21.1.0"
}
}