-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.5 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
93
94
95
96
97
98
99
100
101
{
"name": "composable-form-tests",
"version": "1.1.0",
"description": "Tests for Composable Form Spec components written in React",
"author": "Dairy State Designs (http://dairystatedesigns.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DairyStateDesigns/composable-form-tests.git"
},
"bugs": {
"url": "https://github.com/DairyStateDesigns/composable-form-tests/issues"
},
"homepage": "https://github.com/DairyStateDesigns/composable-form-tests#readme",
"files": [
"CHANGELOG.md",
"dist",
"LICENSE",
"README.md"
],
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist/** && babel lib --out-dir dist",
"lint": "eslint .",
"prepublishOnly": "npm run lint"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "defaults"
}
],
"@babel/preset-react"
]
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:jsx-a11y/recommended",
"plugin:react/recommended"
],
"parser": "@babel/eslint-parser",
"env": {
"browser": true,
"jest": true
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"arrow-body-style": 0,
"consistent-return": 0,
"max-len": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-use-before-define": [
2,
"nofunc"
],
"no-unused-expressions": 0,
"no-console": 0,
"space-before-function-paren": 0,
"react/prefer-stateless-function": 0,
"react/no-multi-comp": 0,
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": [
"warn",
{
"aspects": [
"invalidHref"
]
}
]
}
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/register": "^7.16.0",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0"
}
}