-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "superstandard",
"version": "1.1.6",
"description": "Even more standardized.",
"author": "Alex Kern <[email protected]> (http://kern.io)",
"homepage": "https://github.com/usepavlov/superstandard#readme",
"main": "dist/index.js",
"license": "BSD-3-Clause",
"scripts": {
"test": "make lint"
},
"bin": {
"superstandard": "./dist/cmd.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/usepavlov/superstandard.git"
},
"bugs": {
"url": "https://github.com/usepavlov/superstandard/issues"
},
"dependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.2.0",
"eslint-config-standard": "^5.3.5",
"eslint-config-standard-jsx": "^2.0.0",
"eslint-config-superstandard": "^1.1.6",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^2.0.0",
"standard-engine": "^4.1.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"pre-commit": "^1.1.3"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
}
}