forked from 10xLaCroixDrinker/grunt-node-version
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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
{
"name": "grunt-node-version-windows",
"description": "A grunt task to ensure you are using the node version required by your project's package.json",
"version": "0.3.0",
"homepage": "https://github.com/Conrad2134/grunt-node-version-windows",
"author": "Connor Uhlman <connor.uhlman@gmail.com> (http://www.connoruhlman.com)",
"repository": {
"type": "git",
"url": "git://github.com/Conrad2134/grunt-node-version-windows"
},
"bugs": {
"url": "https://github.com/Conrad2134/grunt-node-version-windows/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"engines": {
"node": "*"
},
"scripts": {
"lint": "jshint tasks --config .jshintrc || true",
"test": "npm run lint"
},
"devDependencies": {
"grunt": "^1.0.1",
"jshint": "^2.9.2"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"grunt",
"nvm",
"node",
"version",
"manager"
],
"dependencies": {
"chalk": "^1.1.3",
"promise": "^7.1.1",
"prompt": "^1.0.0",
"semver": "^5.1.0",
"stripcolorcodes": "^0.1.0"
}
}