-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.47 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
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@takingitglobal/a11ize",
"repository": "https://github.com/takingitglobal/a11ize.git",
"main": "dist/bare/index.js",
"jsdelivr": "dist/with-react-cjs/index.js",
"version": "0.0.0-development",
"description": "A React and JS Accessibility Toolkit",
"author": "TakingITGlobal",
"license": "MIT",
"keywords": [
"accessibility",
"react",
"menu",
"reacjs",
"react-component",
"website"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-icons": "^3.11.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"sideEffects": false,
"devDependencies": {
"@babel/runtime": "^7.11.2",
"core-js": "3",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@google/semantic-release-replace-plugin": "^1.0.0",
"@semantic-release/git": "^9.0.0",
"@storybook/addon-knobs": "^6.0.16",
"@storybook/react": "^6.0.17",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.2",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"node-sass": "^4.14.1",
"preact": "^10.4.7",
"prettier": "^2.1.0",
"react-is": "^16.13.1",
"react-scripts": "^3.4.3",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^10.0.1",
"semantic-release": "^17.1.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.1",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2",
"yaml-loader": "^0.6.0"
},
"scripts": {
"build": "webpack --mode production",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"semantic-release": "semantic-release"
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@google/semantic-release-replace-plugin",
{
"replacements": [
{
"files": [
"README.md"
],
"from": "/a11ize@.*?/",
"to": "/a11ize@${nextRelease.version.replace(/^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$/gm, '$1')}/",
"countMatches": true
}
]
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"README.md"
]
}
]
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix"
]
}
}