forked from standard/standard-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 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
{
"name": "standard-engine",
"version": "12.0.1",
"description": "Wrap your standards in a tortilla and cover it in special sauce.",
"keywords": [
"JavaScript Standard Style",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify"
],
"repository": "standard/standard-engine",
"license": "MIT",
"author": "Dan Flettre <flettre@gmail.com> (http://twitter.com/flettre/)",
"scripts": {
"test": "standard && tape test/clone.js test/api.js"
},
"dependencies": {
"deglob": "^4.0.1",
"get-stdin": "^7.0.0",
"minimist": "^1.2.5",
"pkg-conf": "^3.1.0",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-spawn": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"mkdirp": "^0.5.5",
"standard": "^14.3.3",
"tape": "^5.0.0"
},
"engines": {
"node": ">=8.10"
}
}