Blame view

天文台pc/tianwentai-ui/node_modules/recharts-scale/package.json 2.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  {
    "name": "recharts-scale",
    "version": "0.4.5",
    "description": "Scale of Cartesian Coordinates",
    "main": "lib/index",
    "module": "es6/index.js",
    "jsnext:main": "es6/index",
    "keywords": [
      "Scale",
      "Cartesian Coordinates"
    ],
    "files": [
      "*.md",
      "demo",
      "es6",
      "lib",
      "umd",
      "src"
    ],
    "scripts": {
      "build": "npm run build-cjs && npm run build-es6 && rimraf umd && npm run build-umd && npm run build-min",
      "build-cjs": "rimraf lib && cross-env BABEL_ENV=commonjs babel ./src -d lib",
      "build-es6": "rimraf es6 && cross-env babel ./src -d es6",
      "build-umd": "cross-env NODE_ENV=development BABEL_ENV=commonjs webpack --entry ./src/index.js -o umd",
      "build-min": "cross-env NODE_ENV=production BABEL_ENV=commonjs webpack --entry ./src/index.js -o umd",
      "test": "nyc ava --verbose",
      "autofix": "eslint src test --fix",
      "lint": "eslint src test"
    },
    "pre-commit": [
      "lint"
    ],
    "repository": {
      "type": "git",
      "url": "https://github.com/recharts/recharts-scale.git"
    },
    "author": "recharts group",
    "bugs": {
      "url": "https://github.com/recharts/recharts-scale/issues"
    },
    "homepage": "https://github.com/recharts/recharts-scale",
    "dependencies": {
      "decimal.js-light": "^2.4.1"
    },
    "devDependencies": {
      "@ava/babel": "^1.0.1",
      "@babel/cli": "^7.1.0",
      "@babel/core": "^7.0.0",
      "@babel/plugin-proposal-class-properties": "^7.0.0",
      "@babel/plugin-proposal-export-default-from": "^7.0.0",
      "@babel/plugin-proposal-export-namespace-from": "^7.0.0",
      "@babel/polyfill": "^7.0.0",
      "@babel/preset-env": "^7.0.0",
      "@babel/register": "^7.0.0",
      "ava": "^3.15.0",
      "babel-eslint": "^10.0.0",
      "babel-loader": "^8.0.0",
      "cross-env": "^7.0.3",
      "eslint": "^7.17.0",
      "eslint-config-airbnb": "^18.2.0",
      "eslint-plugin-import": "^2.14.0",
      "eslint-plugin-jsx-a11y": "^6.1.1",
      "eslint-plugin-react": "^7.11.1",
      "esm": "^3.2.25",
      "nyc": "^15.1.0",
      "pre-commit": "^1.1.3",
      "webpack": "^5.15.0",
      "webpack-cli": "^4.3.1"
    },
    "ava": {
      "files": [
        "test/**/*.test.js"
      ],
      "ignoredByWatcher": [
        "umd/**/*"
      ],
      "failFast": true,
      "tap": true,
      "require": [
        "esm",
        "@babel/register"
      ],
      "babel": {
        "testOptions": {
          "presets": [
            "@babel/preset-env"
          ]
        }
      }
    },
    "license": "MIT"
  }