-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
package.json
67 lines (67 loc) · 1.37 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
{
"name": "grunt",
"description": "The JavaScript Task Runner",
"version": "1.6.1",
"author": "Grunt Development Team (https://gruntjs.com/development-team)",
"homepage": "https://gruntjs.com/",
"repository": "https://github.com/gruntjs/grunt.git",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "node bin/grunt test",
"test-tap": "node bin/grunt test:tap"
},
"main": "lib/grunt",
"bin": {
"grunt": "bin/grunt"
},
"keywords": [
"task",
"async",
"cli",
"minify",
"uglify",
"build",
"lodash",
"unit",
"test",
"qunit",
"nodeunit",
"server",
"init",
"scaffold",
"make",
"jake",
"tool"
],
"dependencies": {
"dateformat": "~4.6.2",
"eventemitter2": "~0.4.13",
"exit": "~0.1.2",
"findup-sync": "~5.0.0",
"glob": "~7.1.6",
"grunt-cli": "^1.4.3",
"grunt-known-options": "~2.0.0",
"grunt-legacy-log": "~3.0.0",
"grunt-legacy-util": "~2.0.1",
"iconv-lite": "~0.6.3",
"js-yaml": "~3.14.0",
"minimatch": "~3.0.4",
"nopt": "^5.0.0"
},
"devDependencies": {
"difflet": "~1.0.1",
"eslint-config-grunt": "~2.0.1",
"grunt-contrib-nodeunit": "~5.0.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-eslint": "~24.1.0",
"temporary": "~1.1.0",
"through2": "~4.0.2"
},
"files": [
"lib",
"bin"
]
}