-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "gridjs-jquery",
"version": "4.0.0",
"description": "jQuery wrapper for Grid.js",
"main": "dist/gridjs.production.min.js",
"module": "dist/gridjs.production.es.min.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"clean": "rimraf coverage dist tmp",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grid-js/gridjs-jquery.git"
},
"keywords": [
"gridjs",
"grid",
"table"
],
"author": "Afshin Mehrabani",
"license": "MIT",
"bugs": {
"url": "https://github.com/grid-js/gridjs-jquery/issues"
},
"homepage": "https://github.com/grid-js/gridjs-jquery#readme",
"peerDependencies": {
"jquery": ">1.11.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jest": "^26.0.15",
"@types/jquery": "^3.5.4",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "~7.21.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^23.18.2",
"jest": "~25.5.4",
"jquery": "^3.5.1",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"rollup": "^2.33.2",
"rollup-plugin-sizes": "^1.0.3",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.3",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.5.1",
"ts-loader": "^8.0.11",
"tslib": "^2.0.3",
"tsutils": "~3.17.0",
"typescript": "^3.9.7"
},
"dependencies": {
"gridjs": "^4.0.0"
}
}