forked from mgol/check-dependencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.45 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
56
57
58
59
60
{
"name": "check-dependencies",
"version": "1.1.1-pre",
"description": "Checks if currently installed npm/bower dependencies are installed in the exact same versions that are specified in package.json/bower.json",
"homepage": "https://github.com/mgol/check-dependencies",
"author": {
"name": "Michał Gołębiowski-Owczarek",
"email": "[email protected]"
},
"keywords": [
"dependency",
"packages",
"modules",
"dependencies"
],
"main": "lib/check-dependencies.js",
"bin": {
"check-dependencies": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mgol/check-dependencies.git"
},
"bugs": "https://github.com/mgol/check-dependencies/issues",
"license": "MIT",
"files": [
"bin",
"lib"
],
"dependencies": {
"bower-config": "^1.4.0",
"chalk": "^2.4.1",
"findup-sync": "^2.0.0",
"lodash.camelcase": "^4.3.0",
"minimist": "^1.2.0",
"semver": "^5.5.0"
},
"devDependencies": {
"bluebird": "3.5.1",
"bower": "1.8.4",
"eslint-config-mgol": "0.0.41",
"fs-extra": "5.0.0",
"graceful-fs": "4.1.11",
"grunt": "1.0.2",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.1.0",
"grunt-eslint": "20.1.0",
"grunt-mocha-test": "0.13.3",
"load-grunt-tasks": "3.5.2",
"mocha": "5.1.1",
"sinon": "4.5.0",
"time-grunt": "1.4.0"
},
"scripts": {
"test": "grunt"
},
"engines": {
"node": ">=4.4 <6 || >=6.9"
}
}