This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
generated from baraja-core/yarn-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "@brj/common-business",
"version": "1.0.0",
"description": "BRJ common components.",
"main": "index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"url": "git+ssh://[email protected]/baraja-core/common-business.git",
"type": "git"
},
"author": "Jan Barášek <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"React"
],
"dependencies": {
"@types/jest": "~27.0.3",
"@types/node": "^17.0.14",
"@types/react": "^18.0.12",
"typescript": "^4.6.3",
"@brj/ui": "^1.2"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "~27.0.3",
"prettier": "2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"jest": "~27.0.6",
"ts-node": "^10.9.1",
"ts-jest": "~27.0.7"
},
"bugs": {
"url": "https://github.com/baraja-core/common-business/issues"
},
"homepage": "https://github.com/baraja-core/common-business#readme",
"scripts": {
"prepare": "npm run build",
"build": "yarn build:esm && yarn build:cjs && yarn build:types",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib",
"build:types": "tsc --emitDeclarationOnly --declarationDir lib",
"test": "yarn jest --coverage"
},
"files": [
"/src",
"/lib",
"index.js"
]
}