-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "column-resizer",
"version": "1.3.6",
"description": "Javascript to resize table columns",
"title": "ColumnResizer",
"main": "./dist/column-resizer.js",
"author": {
"name": "John Glynn",
"email": "[email protected]"
},
"scripts": {
"test": "npm run build && mocha-chrome test/sample1.html",
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"lint": "eslint src/*.js test/*.js",
"clean": "rimraf dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/MonsantoCo/column-resizer.git"
},
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/MonsantoCo/column-resizer/issues"
},
"license": "BSD-3-Clause",
"keywords": [
"resize table",
"resize columns",
"resize",
"resizable",
"columns",
"table",
"range slider",
"resize table columns"
],
"devDependencies": {
"@babel/cli": "~7.12.8",
"@babel/core": "~7.12.9",
"@babel/plugin-proposal-class-properties": "~7.12.1",
"@babel/preset-env": "~7.12.7",
"@babel/register": "~7.12.1",
"@babel/runtime": "~7.12.5",
"babel-eslint": "~10.1.0",
"babel-loader": "~8.2.2",
"canvas": "~2.6.1",
"chai": "~4.2.0",
"cross-env": "~7.0.3",
"eslint": "~7.14.0",
"jsdom": "~16.4.0",
"mocha": "~8.2.1",
"mocha-chrome": "~2.2.0",
"rimraf": "~3.0.2",
"terser-webpack-plugin": "^5.0.3",
"webpack": "~5.9.0",
"webpack-cli": "~4.2.0"
},
"dependencies": {
"string-hash": "~1.1.3"
}
}