-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
111 lines (111 loc) · 3.79 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
{
"name": "react-sanfona",
"version": "1.5.0",
"description": "React accessible accordion component",
"main": "./dist-modules/index.js",
"scripts": {
"bundle:demo": "webpack --config webpack.config.demo.js",
"bundle:dist": "NODE_ENV=production webpack --config webpack.config.dist.js",
"bundle:page": "NODE_ENV=production webpack --config webpack.config.page.js",
"bundle:modules": "rm -rf dist-modules/* --force && NODE_ENV=production babel src --out-dir dist-modules",
"start": "webpack-dev-server --config webpack.config.demo.js",
"lint": "eslint ./src",
"lint-staged": "./node_modules/.bin/lint-staged .",
"test": "npm run lint && mocha -R spec --require @babel/register ./src/**/test.js",
"prepare": "npm run bundle:dist && npm run bundle:modules",
"prepublishOnly": "npm run deploy",
"deploy": "npm run bundle:page && gh-pages -a -d page/"
},
"repository": {
"type": "git",
"url": "https://github.com/daviferreira/react-sanfona.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"accordion",
"accessibility",
"aria",
"widget"
],
"author": "Davi Ferreira <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/daviferreira/react-sanfona/issues"
},
"homepage": "https://github.com/daviferreira/react-sanfona",
"peerDependencies": {
"react": "^15.0 || ^16.0",
"react-dom": "^15.0 || ^16.0"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-pipeline-operator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"lint-staged": "^9.5.0",
"mocha": "^7.0.0",
"normalize.css": "^8.0.1",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"skin-deep": "^1.2.0",
"style-loader": "^1.1.3",
"unexpected": "^11.12.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": "npm run lint",
"*.{js,json}": [
"prettier --single-quote --write",
"git add"
]
}
}