-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
102 lines (102 loc) · 3.03 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-super-responsive-table",
"version": "6.0.1",
"description": "react-super-responsive-table converts your table data to a user-friendly list in mobile view.",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"author": "Coston Perkins (https://coston.io)",
"homepage": "https://react-super-responsive-table.coston.io",
"repository": {
"type": "git",
"url": "https://github.com/coston/react-super-responsive-table.git"
},
"bugs": {
"url": "https://github.com/coston/react-super-responsive-table/issues"
},
"engines": {
"node": ">=12"
},
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run start\" \"npm run build:watch\"",
"build": "npm run build:esm && npm run build:cjs; npm run copy-css",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc",
"build:watch": "tsc --watch",
"build-demo": "rapid build",
"clean": "rimraf dist dist",
"copy-css": "cp src/SuperResponsiveTableStyle.css dist/",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "eslint '**/*.{js,ts,tsx}' --fix",
"postpublish": "git push && git push --tags",
"preversion": "npm run test && npm run lint:fix && npm run clean && npm run build && npm run build-demo",
"start": "rapid dev",
"test": "jest --config jest.config.ts",
"test:coverage": "jest --coverage --config jest.config.ts",
"test:watch": "jest --watch --config jest.config.ts"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.0",
"concurrently": "^8.2.2",
"coveralls": "3.1.1",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.1.4",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"rapid-react-pkg-demo": "^0.5.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"react",
"react-component",
"table"
],
"directories": {
"test": "test"
}
}