-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "smart-table-server",
"version": "0.1.1",
"description": "allows to move core logic of your smart table to your server.",
"main": "./dist/smart-table-server.js",
"module": "./index.js",
"jsnext:main": "./index.js",
"scripts": {
"build:test": "rollup -c ./test/rollup.config.js",
"build": "rollup -c",
"build:example": "rollup -c ./example/rollup.config.js",
"test": "npm run build:test && node ./test/dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/smart-table-server.git"
},
"keywords": [
"smart-table",
"ui",
"grid",
"datatable",
"table"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/smart-table-server/issues"
},
"homepage": "https://github.com/smart-table/smart-table-server#readme",
"devDependencies": {
"rollup": "^0.41.6",
"rollup-plugin-node-resolve": "^3.0.0",
"smart-table-core": "^1.3.5",
"smart-table-vanilla": "^0.1.0",
"zora": "^0.3.0"
}
}