-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "d3-time",
"version": "3.1.0",
"description": "A calculator for humanity’s peculiar conventions of time.",
"homepage": "https://d3js.org/d3-time/",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3-time.git"
},
"keywords": [
"d3",
"d3-module",
"time",
"interval",
"calendar"
],
"license": "ISC",
"author": {
"name": "Mike Bostock",
"url": "http://bost.ocks.org/mike"
},
"type": "module",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/d3-time.min.js",
"unpkg": "dist/d3-time.min.js",
"exports": {
"umd": "./dist/d3-time.min.js",
"default": "./src/index.js"
},
"sideEffects": false,
"dependencies": {
"d3-array": "2 - 3"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.4.0",
"globals": "^15.3.0",
"mocha": "^10.4.0",
"rollup": "^4.18.0"
},
"scripts": {
"test": "TZ=America/Los_Angeles mocha 'test/**/*-test.js' && eslint src test",
"lint": "eslint src test",
"build": "rm -rf dist && rollup -c"
},
"engines": {
"node": ">=12"
}
}