-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "react-strapped",
"version": "1.0.0",
"description": "React Strapped is a React library for managing bootstrap data in multi-page applications.",
"exports": {
"import": {
"types": "./dist/esm/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"types": "./dist/cjs/types/index.d.ts",
"main": "./dist/cjs/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint ./src ./test",
"lint:fix": "eslint --fix ./src ./test",
"clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"prepack": "npm run lint && npm run test && npm run build",
"test": "jest ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nebrius/react-strapped.git"
},
"keywords": [
"react"
],
"author": "Bryan Hughes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nebrius/react-strapped/issues"
},
"homepage": "https://github.com/nebrius/react-strapped#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": ">=17.0.0"
}
}