forked from gruntjs/grunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.49 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",
"description": "The JavaScript Task Runner",
"version": "1.0.1",
"author": "Grunt Development Team (http://gruntjs.com/development-team)",
"homepage": "http://gruntjs.com/",
"repository": "https://github.com/gruntjs/grunt.git",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test",
"test-tap": "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": {
"coffee-script": "~1.10.0",
"dateformat": "~1.0.12",
"eventemitter2": "~0.4.13",
"exit": "~0.1.1",
"findup-sync": "~0.3.0",
"glob": "~7.0.0",
"grunt-cli": "~1.2.0",
"grunt-known-options": "~1.1.0",
"grunt-legacy-log": "~1.0.0",
"grunt-legacy-util": "~1.0.0",
"iconv-lite": "~0.4.13",
"js-yaml": "~3.5.2",
"minimatch": "~3.0.2",
"nopt": "~3.0.6",
"path-is-absolute": "~1.0.0",
"rimraf": "~2.2.8"
},
"devDependencies": {
"difflet": "~0.2.3",
"eslint-config-grunt": "~1.0.1",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-watch": "~1.0.0",
"grunt-eslint": "~18.1.0",
"semver": "2.1.0",
"shelljs": "~0.5.3",
"temporary": "~0.0.4",
"through2": "~2.0.0"
},
"files": [
"lib",
"bin"
]
}