-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 993 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 993 Bytes
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
{
"name": "grunth-cli",
"version": "1.3.8-pre",
"description": "Runs grunt with the --harmony* flags",
"homepage": "https://github.com/EE/grunth-cli",
"author": {
"name": "Michał Gołębiowski-Owczarek",
"email": "m.goleb@gmail.com"
},
"bin": {
"grunth": "bin/grunth"
},
"keywords": [
"grunt",
"harmony",
"es6"
],
"main": "lib/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/EE/grunth-cli.git"
},
"bugs": "https://github.com/EE/grunth-cli/issues",
"license": "MIT",
"files": [
"bin",
"lib"
],
"dependencies": {
"findup-sync": "^2.0.0",
"grunt-cli": "^1.2.0",
"semver": "^5.4.1"
},
"devDependencies": {
"eslint-config-mgol": "0.0.40",
"grunt": "1.0.1",
"grunt-eslint": "20.0.0",
"load-grunt-tasks": "3.5.2",
"time-grunt": "1.4.0"
},
"scripts": {
"test": "node bin/grunth test"
},
"engines": {
"node": ">=0.12.13 <0.13 || >=4.4 <5 || >=6.9"
}
}