Blame view

天文台pc/tianwentai-ui/node_modules/d3-timer/package.json 1.63 KB
bc518174   王天杨   提交两个项目文件
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-timer",
    "version": "3.0.1",
    "description": "An efficient queue capable of managing thousands of concurrent animations.",
    "homepage": "https://d3js.org/d3-timer/",
    "repository": {
      "type": "git",
      "url": "https://github.com/d3/d3-timer.git"
    },
    "keywords": [
      "d3",
      "d3-module",
      "timer",
      "transition",
      "animation",
      "requestAnimationFrame",
      "setTimeout",
      "setInterval"
    ],
    "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-timer.min.js",
    "unpkg": "dist/d3-timer.min.js",
    "exports": {
      "umd": "./dist/d3-timer.min.js",
      "default": "./src/index.js"
    },
    "sideEffects": false,
    "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"
    }
  }