-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "react-tiny-accordion",
"version": "2.0.5",
"description": "Tiny, super simple accordion for React",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"unpkg": "dist/index.js",
"scripts": {
"build": "rollup src/index.js -c",
"prepublishOnly": "npm run build",
"test": "cross-env BABEL_ENV=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilpalsson/react-tiny-accordion.git"
},
"keywords": [
"react",
"accordion",
"react-accordion"
],
"author": "Emil Pålsson <[email protected]> (https://github.com/emilpalsson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilpalsson/react-tiny-accordion/issues"
},
"homepage": "https://github.com/emilpalsson/react-tiny-accordion#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify": "^6.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
}
}