-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "dd-elements",
"version": "1.0.1",
"description": "D3-style alternative to JSX for React.js",
"keywords": [
"jsx-alternative",
"jsx",
"no-jsx",
"react",
"data-driven",
"d3"
],
"homepage": "https://github.com/pavloDeshko/dd-elements",
"author": "Pavlo Deshko <[email protected]>",
"license": "MIT",
"main": "./lib/index",
"scripts": {
"test": "npm run build && jest test.ts",
"build": "tsc",
"docs": "doxdox lib/index.js --renderer markdown --output API.md",
"size": "size-limit",
"test:legacy": "jest ./legacy/test.js",
"prepare": "husky install",
"pre-commit": "npm run test && npm run docs"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.27",
"@types/react-test-renderer": "^17.0.1",
"doxdox": "^4.0.0-preview.20",
"husky": "^7.0.4",
"jest": "^27.4.3",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"size-limit": "^7.0.4",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"peerDependencies": {
"react": "*"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"extensionsToTreatAsEsm": [
".ts"
],
"globals": {
"ts-jest": {
"useESM": true
}
}
},
"size-limit": [
{
"path": "./lib/index.js"
}
]
}