-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.19 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "reacto-form-inputs",
"version": "1.2.0",
"description": "Example React components that implement the Composable Form Specification for form inputs",
"author": "Dairy State Designs (http://dairystatedesigns.com/)",
"license": "MIT",
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/DairyStateDesigns/reacto-form-inputs.git"
},
"bugs": {
"url": "https://github.com/DairyStateDesigns/reacto-form-inputs/issues"
},
"homepage": "https://github.com/DairyStateDesigns/reacto-form-inputs",
"files": [
"CHANGELOG.md",
"cjs",
"esm",
"LICENSE",
"README.md"
],
"browserslist": [
"last 2 version",
"> 1%",
"maintained node versions",
"not dead"
],
"eslintConfig": {
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"jest": true
},
"rules": {
"arrow-body-style": 0,
"consistent-return": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 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,
"object-curly-newline": 0,
"space-before-function-paren": 0,
"react/default-props-match-prop-types": 0,
"react/destructuring-assignment": 0,
"react/jsx-filename-extension": 0,
"react/no-multi-comp": 0,
"react/prefer-stateless-function": 0,
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/label-has-for": 0,
"jsx-a11y/anchor-is-valid": [
"warn",
{
"aspects": [
"invalidHref"
]
}
]
}
},
"jest": {
"setupFiles": [
"raf/polyfill",
"<rootDir>/jestSetup.js"
]
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"scripts": {
"build": "npm run build:modules && npm run build:common",
"build:common": "rm -rf cjs/** && BABEL_ENV=production babel lib --out-dir cjs",
"build:modules": "rm -rf esm/** && BABEL_ENV=production BABEL_MODULES=1 babel lib --out-dir esm",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm test && npm run build",
"test": "jest"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"babel-eslint": "^10.1.0",
"composable-form-tests": "^1.0.1",
"core-js": "^3.12.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"jest": "^29.7.0",
"moment-timezone": "^0.5.33",
"raf": "^3.4.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
}
}