forked from fiduswriter/simple-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "simple-datatables",
"version": "2.0.0",
"description": "A lightweight, dependency-free JavaScript HTML table plugin.",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "npm run check_js",
"check_js": "eslint src/",
"compile": "npm run compile_js && npm run compile_css && npm run compile_demo",
"compile_js": "rollup -c",
"compile_css": "cp src/style.css dist/style.css",
"compile_demo": "npm run compile_demo_js && cp node_modules/systemjs/dist/s.min.js demo/dist/nomodule/ && cp src/style.css demo/dist/style.css",
"compile_demo_js": "rollup -c rollup.demo.config.js",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiduswriter/Simple-DataTables.git"
},
"keywords": [
"DataTable",
"DataTables",
"table",
"html table",
"filter",
"sort"
],
"author": "Johannes Wilm",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/fiduswriter/Simple-DataTables/issues"
},
"homepage": "https://github.com/fiduswriter/Simple-DataTables#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"rollup": "^1.1.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.3",
"systemjs": "^2.1.1"
},
"dependencies": {
"moment": "^2.23.0"
}
}