-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "@zjugis/geo-timeline",
"version": "1.6.0",
"packageManager": "[email protected]",
"description": "A D3.js-based geologic time line",
"type": "module",
"source": "src/index.ts",
"exports": "./dist/index.modern.js",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle --name timeLine",
"dev": "microbundle --no-sourcemap --name timeLine -f umd watch",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hongfaqiu/geo-timeline.git"
},
"keywords": [
"d3",
"geologic",
"timeline"
],
"author": "hongfaqiu",
"license": "MIT",
"bugs": {
"url": "https://github.com/hongfaqiu/geo-timeline/issues"
},
"homepage": "https://github.com/hongfaqiu/geo-timeline#readme",
"dependencies": {
"d3": "^7.6.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.3",
"@types/d3": "^7.4.0",
"@types/jsdom": "^20.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.15",
"chai": "^4.3.6",
"jsdom": "^20.0.0",
"microbundle": "^0.15.1",
"mocha": "^10.0.0",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"files": [
"dist",
"README.md"
]
}