forked from grid-js/gridjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.26 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "gridjs",
"version": "1.0.2",
"description": "Advanced table plugin",
"keywords": [
"grid",
"table",
"gridjs",
"list",
"filter",
"search",
"sort",
"pagination",
"react",
"angular"
],
"homepage": "https://gridjs.io",
"repository": "https://github.com/grid-js/gridjs",
"main": "dist/gridjs.production.min.js",
"module": "dist/gridjs.production.es.min.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"engines": {
"node": ">= 12.13 <13"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.9",
"@typescript-eslint/eslint-plugin": "~2.19.2",
"@typescript-eslint/parser": "~2.34.0",
"autoprefixer": "^9.8.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^2.2.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "~23.13.2",
"identity-obj-proxy": "^3.0.0",
"jest": "~25.5.4",
"lerna-changelog": "^1.0.1",
"node-sass": "^4.14.1",
"node-sass-chokidar": "^1.4.0",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"rollup": "^2.11.2",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-sizes": "^1.0.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.5",
"tsutils": "~3.17.0",
"typescript": "^3.9.3"
},
"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",
"changelog": "lerna-changelog"
},
"author": "Afshin Mehrabani <[email protected]>",
"license": "MIT",
"dependencies": {
"preact": "^10.4.4",
"tslib": "~2.0.0"
},
"changelog": {
"labels": {
"new feature": ":rocket: New Feature",
"breaking change": ":boom: Breaking Change",
"bug fix": ":bug: Bug Fix",
"polish": ":nail_care: Polish",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"performance": ":running_woman: Performance"
},
"cacheDir": ".changelog"
}
}