-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
32 lines (32 loc) · 826 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
{
"name": "nave",
"author": "Isaac Z. Schlueter <[email protected]>",
"description": "Virtual Environments for Node",
"version": "3.5.2",
"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": "ISC",
"files": [
"nave.sh"
],
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"repository": "https://github.com/isaacs/nave",
"devDependencies": {
"tap": "^18.4.5"
}
}