-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@kanety/jquery-simple-tree-table",
"description": "A jquery plugin that attaches tree-like behaviour to table",
"version": "0.5.1",
"author": "Yoshikazu Kaneta <kaneta@sitebridge.co.jp>",
"repository": {
"type": "git",
"url": "https://github.com/kanety/jquery-simple-tree-table.git"
},
"keywords": [
"jquery",
"jquery-plugin",
"table",
"tree"
],
"license": "MIT",
"main": "dist/jquery-simple-tree-table.js",
"style": "dist/jquery-simple-tree-table.css",
"scripts": {
"start": "webpack-dev-server --mode development",
"watch": "webpack --mode development --watch",
"build": "webpack --mode production",
"test": "karma start"
},
"dependencies": {
"@kanety/js-store": "^0.1.2",
"jquery": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@chiragrupani/karma-chromium-edge-launcher": "^2.1.0",
"babel-loader": "^8.1.0",
"coverage-istanbul-loader": "^3.0.3",
"css-loader": "^3.6.0",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^1.3.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^3.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"node-sass": "^4.14.1",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}