-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 KB
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
{
"name": "react-collapsable-table",
"version": "0.0.4",
"keywords": [
"react",
"table",
"collapsable-table",
"collapsable table",
"react-collapsable-table",
"react collapsable table",
"react-table",
"react table"
],
"description": "Table which collapses according to the size",
"main": "build/dist/index.js",
"module": "build/dist/index.es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Abhishek-VG/react-collapsable-table"
},
"scripts": {
"clean": "node ./clean",
"prepare": "npm run build",
"build": "npm run clean && rollup -c rollup.config.prod.js",
"start": "rollup -c rollup.config.dev.js -w"
},
"author": "Abhishek VG",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"rollup": "^1.6.0",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-generate-html-template": "1.1.0",
"rollup-plugin-img": "^1.1.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-url": "^2.2.0",
"rollup-watch": "^4.3.1"
},
"dependencies": {
"classnames": "^2.2.6"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"files": [
"build/dist",
"example",
"package.json",
"README.md"
]
}