-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "smart-table-react",
"version": "0.1.0",
"description": "react or preact binding for smart-table",
"main": "./dist/smart-table-react.js",
"jsnext:main": "index.js",
"module": "index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:example:react": "rollup -c ./example/react.config.js",
"build:example:preact": "rollup -c ./example/preact.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/smart-table-react.git"
},
"keywords": [
"smart-table",
"react",
"table",
"grid"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/smart-table-react/issues"
},
"homepage": "https://github.com/smart-table/smart-table-react#readme",
"devDependencies": {
"buble": "^0.15.2",
"preact": "^8.1.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1"
},
"dependencies": {
"smart-table-core": "^1.3.2",
"smart-table-json-pointer": "^1.0.1"
}
}