-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
72 lines (72 loc) · 1.65 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "grunt-run-grunt",
"description": "Grunt task to run Gruntfiles in a child process. Gruntception!",
"version": "1.0.1",
"main": "tasks/run_grunt.js",
"engines": {
"node": ">= 4",
"npm": ">= 2.14.3"
},
"license": "MIT",
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"homepage": "https://github.com/Bartvds/grunt-run-grunt",
"repository": {
"type": "git",
"url": "https://github.com/Bartvds/grunt-run-grunt"
},
"bugs": {
"url": "https://github.com/Bartvds/grunt-run-grunt/issues"
},
"keywords": [
"gruntplugin",
"gruntfile",
"grunt-cli",
"spawn",
"grunt",
"run"
],
"nyc": {
"all": true,
"include": [
"lib/*.js",
"tasks/*.js"
],
"exclude": [
"test/**/*.js",
"Gruntfile.js"
]
},
"scripts": {
"lint": "jshint lib tasks test Gruntfile.js",
"test": "grunt test",
"cover": "nyc --reporter=html --reporter=text grunt test",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"async": "^2.6.1",
"grunt-known-options": "^1.1.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^2.0.0",
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"jshint-path-reporter": "^0.1.3",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"mocha-unfunk-reporter": "^0.4.0",
"nyc": "^13.0.1"
},
"peerDependencies": {
"grunt": ">=1.0.0"
}
}