-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "@profusion/with-props-change-logger",
"version": "0.1.0",
"description": "Log Changed Properties in a React Component",
"files": [
"build"
],
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
}
},
"author": "Gustavo Sverzut Barbieri <[email protected]>",
"license": "MIT",
"repository": "https://github.com/profusion/with-props-change-logger",
"homepage": "https://github.com/profusion/with-props-change-logger",
"bugs": {
"url": "https://github.com/profusion/with-props-change-logger/issues"
},
"keywords": [
"react",
"typescript",
"debug"
],
"lint-staged": {
"*.{ts, js}": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"scripts": {
"check-types": "tsc --noEmit",
"run-lint": "eslint --max-warnings=0 --ext .ts,.tsx,.js,.jsx src example",
"lint": "run-p check-types run-lint",
"clean": "rimraf build",
"transpile:types": "tsc --emitDeclarationOnly --declaration --outDir build",
"transpile:cjs": "tsc --module commonjs --outDir build/cjs",
"transpile:esm": "tsc --module esnext --outDir build/esm",
"transpile": "run-p transpile:cjs transpile:esm transpile:types",
"build": "run-s clean transpile",
"test": "jest",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}