-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 865 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
{
"name": "nvmjs",
"version": "0.0.5",
"description": "A wrapper around nvm with a javascript interface",
"main": "index.js",
"type": "commonjs",
"keywords": [
"nvm",
"nvmjs",
"node version",
"version management"
],
"scripts": {
"test": "standard && mocha",
"debug": "mocha --inspect --inspect-brk --timeout=0",
"preversion": "npm t",
"postpublish": "git push origin && git push origin --tags",
"release": "standard-version && npm publish"
},
"author": "Wes Todd <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:wesleytodd/nvmjs.git"
},
"dependencies": {
"@pkgjs/nv": "0.0.3",
"fs-extra": "^9.0.0",
"semver": "^7.3.2"
},
"devDependencies": {
"mocha": "^7.1.2",
"standard": "^14.3.3",
"standard-version": "^9.1.1"
}
}