forked from mgol/grunt-check-dependencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "grunt-check-dependencies",
"version": "0.7.0",
"description": "Checks if currently installed npm dependencies are installed in the exact same versions that are specified in package.json.",
"homepage": "https://github.com/mzgol/grunt-check-dependencies",
"author": {
"name": "Michał Gołębiowski",
"email": "[email protected]"
},
"keywords": [
"gruntplugin",
"dependency",
"packages",
"modules",
"dependencies"
],
"repository": {
"type": "git",
"url": "https://github.com/mzgol/grunt-check-dependencies.git"
},
"bugs": "https://github.com/mzgol/grunt-check-dependencies/issues",
"licenses": [
{
"type": "MIT"
}
],
"files": [
"tasks"
],
"dependencies": {
"check-dependencies": "^0.8.1",
"lodash.clonedeep": "^2.4.1"
},
"devDependencies": {
"fs-extra": "0.13.0",
"grunt-cli": "0.1.13",
"grunt-eslint": "2.1.0",
"grunt-jscs": "0.8.1",
"grunt-mocha-test": "0.12.4",
"jscs-trailing-comma": "0.3.0",
"load-grunt-tasks": "2.0.0",
"mocha": "2.1.0",
"semver": "4.2.0",
"time-grunt": "1.0.0"
},
"peerDependencies": {
"grunt": "~0.4.1"
},
"scripts": {
"test": "grunt"
},
"engines": {
"node": ">=0.10.21"
}
}