-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.75 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
73
74
75
76
77
{
"name": "gruntfile-gtx",
"version": "1.0.0",
"description": "Turbo, spoilers and a sunroof for your Gruntfile",
"main": "lib/gtx.js",
"license": "MIT",
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"engines": {
"node": ">= 4",
"npm": ">= 2.14.3"
},
"homepage": "https://github.com/Bartvds/gruntfile-gtx",
"repository": {
"type": "git",
"url": "https://github.com/Bartvds/gruntfile-gtx.git"
},
"bugs": {
"url": "https://github.com/Bartvds/gruntfile-gtx/issues"
},
"keywords": [
"grunt",
"gruntfile",
"script",
"macro",
"tasks",
"alias",
"generator"
],
"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"
},
"pre-commit": [
"lint"
],
"nyc": {
"all": true,
"include": [
"lib/*.js",
"tasks/*.js"
],
"exclude": [
"test/**/*.js",
"Gruntfile.js"
]
},
"dependencies": {
"grunt-concurrent": "^2.3.1",
"load-grunt-tasks": "^4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^2.0.0",
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"grunt-run-grunt": "Bartvds/grunt-run-grunt#master",
"grunt-wait": "Bartvds/grunt-wait#master",
"jshint": "^2.9.6",
"jshint-path-reporter": "^0.1.3",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"mocha-unfunk-reporter": "^0.4.0",
"nyc": "^13.0.3",
"underscore": "^1.9.1"
},
"peerDependencies": {
"grunt": ">=1.0.0"
}
}