-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.06 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
{
"private": true,
"name": "a11y-ui",
"version": "0.0.1",
"description": "A collection of accessibility focused React components.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"start": "NODE_ENV=development npm run docz:dev",
"check": "eslint .",
"docz:dev": "docz dev",
"docz:build": "docz build",
"precommit": "pretty-quick --staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rawrmonstar/a11y-ui.git"
},
"keywords": [
"react",
"a11y",
"accessibility",
"component",
"library"
],
"author": "Tegan Churchill",
"license": "MIT",
"bugs": {
"url": "https://github.com/rawrmonstar/a11y-ui/issues"
},
"homepage": "https://github.com/rawrmonstar/a11y-ui#readme",
"devDependencies": {
"@babel/core": "^7.0.0-rc.2",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.2",
"@babel/preset-env": "^7.0.0-rc.2",
"@babel/preset-react": "^7.0.0-rc.2",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.14",
"docz": "^0.10.3",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^1.0.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"files": [
"dist"
],
"browserslist": [
">0.25%",
"not ie 11",
"not op_mini all"
]
}