-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "grunt-strip-code",
"description": "Remove dev and test only code in production builds",
"version": "1.0.12",
"homepage": "https://github.com/nuzzio/grunt-strip-code",
"author": {
"name": "Rene Cabral",
"email": "rene@oki.io",
"url": "http://oki.io"
},
"repository": {
"type": "git",
"url": "git://github.com/nuzzio/grunt-strip-code.git"
},
"bugs": {
"url": "https://github.com/nuzzio/grunt-strip-code/issues"
},
"license": "MIT",
"main": "Gruntfile.js",
"engines": {
"node": ">= 10.16.0"
},
"scripts": {
"test": "grunt test",
"check_coverage": "grunt instrument && GRUNT_STRIP_CODE_COVERAGE=1 grunt test",
"post_coverage": "grunt instrument && GRUNT_STRIP_CODE_COVERAGE=1 grunt post_coverage"
},
"dependencies": {
"array-last": "~0.1.0",
"escape-string-regexp": "~1.0.5"
},
"devDependencies": {
"coffee-script": "^1.12.7",
"ejs": "^3.1.7",
"grunt": "^1.5.3",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-nodeunit": "^3.0.0",
"grunt-coveralls": "^2.0.0",
"grunt-jscover": "^0.0.1",
"jscover": "^1.0.0",
"jshint-stylish": "^2.2.1",
"minimist": "^1.2.6",
"uglify-js": ">=2.6.0",
"underscore": ">=1.12.1"
},
"peerDependencies": {
"grunt": ">=0.5.2"
},
"keywords": [
"gruntplugin",
"strip",
"unit",
"test",
"private",
"functions"
]
}