-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
55 lines (55 loc) · 1.69 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
{
"name": "d3-scale-chromatic",
"version": "3.1.0",
"description": "Sequential, diverging and categorical color schemes.",
"homepage": "https://d3js.org/d3-scale-chromatic/",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3-scale-chromatic.git"
},
"keywords": [
"d3",
"d3-module",
"color",
"scale",
"sequential",
"colorbrewer"
],
"license": "ISC",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"type": "module",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/d3-scale-chromatic.min.js",
"unpkg": "dist/d3-scale-chromatic.min.js",
"exports": {
"umd": "./dist/d3-scale-chromatic.min.js",
"default": "./src/index.js"
},
"sideEffects": false,
"dependencies": {
"d3-color": "1 - 3",
"d3-interpolate": "1 - 3"
},
"devDependencies": {
"eslint": "7",
"mocha": "8",
"rollup": "2",
"rollup-plugin-terser": "7"
},
"scripts": {
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "rm -rf dist && yarn test && rollup -c",
"postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../${npm_package_name}/dist/${npm_package_name}.js ${npm_package_name}.v${npm_package_version%%.*}.js && cp ../${npm_package_name}/dist/${npm_package_name}.min.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git add ${npm_package_name}.v${npm_package_version%%.*}.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git commit -m \"${npm_package_name} ${npm_package_version}\" && git push && cd -"
},
"engines": {
"node": ">=12"
}
}