-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.14 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.14 KB
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
{
"name": "d3-render",
"author": {
"name": "Kaho Cheung",
"url": "https://github.com/unkleho"
},
"version": "0.3.0",
"license": "MIT",
"module": "dist/d3-render.esm.js",
"unpkg": "dist/d3-render.umd.production.min.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/unkleho/d3-render",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch --format cjs,esm,umd",
"build": "tsdx build --format cjs,esm,umd",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "tsdx build --format cjs,esm,umd"
},
"peerDependencies": {
"d3-selection": ">=2",
"d3-transition": ">=2"
},
"devDependencies": {
"@testing-library/dom": "^7.2.2",
"@types/d3": "^6.3.0",
"d3": "^6.5.0",
"husky": "^4.2.5",
"tsdx": "^0.13.3",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}