-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "react-from-html",
"version": "0.1.5",
"main": "lib/index.js",
"author": "Measured Co. <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "tsc",
"format": "prettier **/*.{js,ts} !**/lib/** --write",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"cz-conventional-changelog": "3.3.0",
"gh-pages": "^3.2.3",
"jest": "^23.6.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^23.10.5",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}