forked from grid-js/gridjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "gridjs",
"description": "Advanced table plugin",
"keywords": [
"grid",
"table",
"gridjs",
"list",
"filter",
"search",
"sort",
"pagination",
"react",
"angular",
"jquery"
],
"homepage": "https://gridjs.io",
"repository": "https://github.com/grid-js/gridjs",
"devDependencies": {
"lerna": "^3.22.1",
"prettier": "~2.2.1"
},
"scripts": {
"prettier": "prettier --ignore-path dist --write 'packages/**/*.(ts|js|scss|css)'",
"postinstall": "lerna bootstrap",
"clean": "lerna run clean",
"build": "lerna run build --stream",
"build:watch": "lerna run build:watch --stream --parallel",
"lint": "lerna run lint --stream --parallel",
"test": "lerna run test --stream --parallel",
"test:watch": "lerna run test:watch --stream --parallel"
},
"author": "Afshin Mehrabani <[email protected]>",
"license": "MIT",
"changelog": {
"labels": {
"new feature": ":rocket: New Feature",
"breaking": ":boom: Breaking Change",
"bug fix": ":bug: Bug Fix",
"polish": ":nail_care: Polish",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"performance": ":running_woman: Performance"
},
"cacheDir": ".changelog"
}
}