-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "protable",
"version": "0.1.3",
"description": "A (non-jQuery) DataTables alternative. Written with modern Javascript.",
"main": "lib/index.js",
"scripts": {
"test": "npm run prepublish && require-self && ava",
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --open --config webpack.dev.js",
"prepublish": "babel src --out-dir lib && cp -r src/const lib && cp -r src/scss lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibnujakaria/protable.git"
},
"keywords": [
"Datatable",
"Datatables",
"Alternative",
"Data",
"Table"
],
"author": "Ibnu Zakariyya <ibnujakaria@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ibnujakaria/protable/issues"
},
"homepage": "https://protable.jagongoding.com",
"dependencies": {
"@babel/runtime": "^7.10.2"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"ava": "^3.8.2",
"babel-loader": "^8.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"browser-env": "^3.3.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.1.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.5.3",
"esm": "^3.2.25",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"require-self": "^0.2.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"ava": {
"babel": {
"compileAsTests": [
"src/**/*"
]
},
"require": [
"./test/_setup-browser-env.js",
"esm"
]
}
}