This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.41 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ferrocarril",
"version": "0.1.0",
"description": "Experiments with mruby bindings for Rust",
"keywords": [
"format",
"lint",
"ruby",
"rust"
],
"homepage": "https://github.com/artichoke/ferrocarril",
"bugs": "https://github.com/artichoke/ferrocarril/issues",
"license": "MIT",
"author": {
"name": "Ryan Lopopolo",
"email": "[email protected]",
"url": "https://hyperbo.la"
},
"contributors": [
{
"name": "Ryan Lopopolo",
"email": "[email protected]",
"url": "https://hyperbo.la"
}
],
"repository": {
"type": "git",
"url": "https://github.com/artichoke/ferrocarril.git"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.1",
"clang-format": "^1.2.4",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.0",
"gh-pages": "^2.1.1",
"package-json-validator": "^0.6.3",
"pkg-dir-cli": "^2.1.0",
"prettier": "^1.15.3",
"prettier-eslint": "^9.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parser": "babel-eslint",
"plugins": [
"html",
"prettier"
],
"extends": [
"airbnb",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"react/jsx-closing-bracket-location": "off",
"react/jsx-closing-tag-location": "off",
"react/jsx-curly-spacing": "off",
"react/jsx-equals-spacing": "off",
"react/jsx-first-prop-new-line": "off",
"react/jsx-indent": "off",
"react/jsx-indent-props": "off",
"react/jsx-max-props-per-line": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-multi-spaces": "off",
"react/jsx-tag-spacing": "off",
"react/jsx-wrap-multilines": "off",
"react/self-closing-comp": "off"
}
},
"scripts": {
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"lint": "./scripts/lint.sh",
"loc": "loc --exclude vendor --exclude ffi\\.rs --exclude mruby-bin/ruby/fixtures --exclude spec-runner/spec"
}
}