-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "smart-table-core",
"version": "3.0.7",
"description": "smart-core directives",
"main": "./dist/bundle/index",
"types": "./dist/declarations/index.d.ts",
"module": "./dist/bundle/module.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "pta",
"build:clean": "rm -rf ./dist && mkdir -p ./dist/bundle && cp -r ./src ./dist/src",
"build:compile": "tsc",
"build:bundle": "rollup -c ./rollup/build.js && rollup -c ./rollup/cdn.js",
"build": "npm run build:clean && npm run build:compile && npm run build:bundle && rm -rf dist/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/smart-table-core.git"
},
"keywords": [
"smart-table",
"datatable",
"table",
"grid"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/smart-table-core/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/smart-table/smart-table-core#readme",
"devDependencies": {
"pta": "^0.1.0",
"rollup": "^1.21.2",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^3.6.3"
},
"dependencies": {
"smart-table-events": "^1.0.10",
"smart-table-filter": "^2.0.5",
"smart-table-json-pointer": "^3.0.0",
"smart-table-operators": "^2.0.10",
"smart-table-search": "^2.0.8",
"smart-table-sort": "^2.0.5"
}
}