This repository was archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.41 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.41 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "grind-toolkit",
"description": "CLI Tookit for Grind",
"version": "0.8.0-beta.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grindjs/toolkit.git"
},
"keywords": [
"grindjs",
"grind-framework"
],
"preferGlobal": true,
"bin": {
"grind": "./lib/bin/cli"
},
"dependencies": {
"as-type": "^1.0.0",
"fetchit": "^2.1.0",
"grind-cli": "^0.8.0-beta.4",
"grind-framework": "^0.8.0-beta.2",
"grind-stone": "^0.8.0-beta.9",
"grind-view": "^0.8.0-beta.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-preset-grind": "^0.8.0-beta.4",
"eslint": "^5.16.0",
"eslint-config-grind": "^2.3.0",
"eslint-plugin-import-auto-name": "^1.0.3"
},
"engines": {
"node": ">=8.7",
"npm": ">=3.0"
},
"scripts": {
"prepack": "bin/build",
"lint": "eslint app boot"
},
"babel": {
"presets": [
[
"grind", {
"import-auto-name": {
"autoresolve": true
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import-auto-name"
],
"env": {
"node": true
},
"extends": "grind",
"parserOptions": {
"sourceType": "module"
},
"globals": {
"ValidationError": false
}
}
}