-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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": "@ctablex/core",
"description": "Flexible and powerful react table",
"version": "0.4.0",
"license": "MIT",
"main": "lib/ctablex.js",
"unpkg": "dist/ctablex.js",
"module": "es/ctablex.js",
"typings": "./index.d.ts",
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts",
"tsdoc-metadata.json"
],
"keywords": [
"react",
"table",
"ctablex",
"react-table",
"datagrid"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/sahabpardaz/ctablex"
},
"scripts": {
"prepare": "husky install",
"build": "libton-script build",
"build:doc": "libton-script doc",
"toc": "markdown-toc -i README.md",
"test": "libton-script test --coverage --verbose",
"lint": "libton-script lint && eslint --max-warnings=0 examples/**/*.{ts,tsx}",
"format": "libton-script format",
"format:check": "libton-script format --check",
"validate": "libton-script lint && libton-script format --check && libton-script test --coverage --verbose",
"prepublishOnly": "yarn validate && yarn build",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/jest": "26.0.22",
"@types/react": "^17.0.3",
"@types/testing-library__jest-dom": "^5.9.5",
"husky": "^6.0.0",
"libton-script": "^0.12.8",
"lint-staged": "10.5.4",
"markdown-toc": "^1.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"standard-version": "^9.2.0"
},
"peerDependencies": {
"@types/react": "^16.9.38",
"react": "^16.9.0"
}
}