package.json 2.2 KB
Newer Older
L
lang 已提交
1
{
L
lang 已提交
2
  "name": "echarts",
S
SHUANG SU 已提交
3
  "version": "4.6.0",
L
lang 已提交
4
  "description": "A powerful charting and visualization library for browser",
C
Clement Ho 已提交
5
  "license": "Apache-2.0",
L
lang 已提交
6 7 8 9
  "keywords": [
    "visualization",
    "canvas"
  ],
S
sushuang 已提交
10
  "homepage": "http://echarts.apache.org",
L
lang 已提交
11 12
  "repository": {
    "type": "git",
S
sushuang 已提交
13
    "url": "https://github.com/apache/incubator-echarts.git"
L
lang 已提交
14 15
  },
  "scripts": {
1
100pah 已提交
16
    "prepublish": "node build/build.js --prepublish",
17
    "build": "node build/build.js",
1
100pah 已提交
18 19
    "watch": "node build/build.js --watch",
    "release": "node build/build.js --release",
20
    "help": "node build/build.js --help",
21
    "test:visual": "node test/runTest/server.js",
22
    "test:visual:report": "node test/runTest/genReport.js",
23
    "test": "node build/build.js --prepublish && jest --config test/ut/jest.config.js",
24
    "mktest": "node test/build/mktest.js",
25
    "mktest:help": "node test/build/mktest.js -h",
26 27
    "lint": "./node_modules/.bin/eslint src extension-src",
    "lint:dist": "echo 'It might take a while. Please wait ...' && ./node_modules/.bin/jshint --config .jshintrc-dist dist/echarts.js"
L
lang 已提交
28 29
  },
  "dependencies": {
S
SHUANG SU 已提交
30
    "zrender": "4.2.0"
L
lang 已提交
31 32
  },
  "devDependencies": {
S
sushuang 已提交
33
    "@babel/core": "7.3.4",
S
sushuang 已提交
34 35 36 37
    "@babel/helper-module-transforms": "7.0.0-beta.31",
    "@babel/helper-simple-access": "7.0.0-beta.31",
    "@babel/template": "7.0.0-beta.31",
    "@babel/types": "7.0.0-beta.31",
1
100pah 已提交
38 39 40
    "@microsoft/api-extractor": "7.7.2",
    "@typescript-eslint/eslint-plugin": "^2.15.0",
    "@typescript-eslint/parser": "^2.18.0",
41
    "canvas": "^2.6.0",
1
100pah 已提交
42
    "chalk": "^3.0.0",
S
sushuang 已提交
43 44 45
    "commander": "2.11.0",
    "coordtransform": "2.0.2",
    "escodegen": "1.8.0",
46
    "eslint": "6.3.0",
S
sushuang 已提交
47 48
    "esprima": "2.7.2",
    "estraverse": "4.1.1",
P
pissang 已提交
49
    "fs-extra": "0.26.7",
S
sushuang 已提交
50
    "glob": "7.0.0",
1
100pah 已提交
51
    "globby": "11.0.0",
52 53 54 55
    "jest": "^24.9.0",
    "jest-canvas-mock": "^2.2.0",
    "jsdom": "^15.2.1",
    "jshint": "2.10.2",
56 57 58
    "open": "6.4.0",
    "pixelmatch": "5.0.2",
    "pngjs": "3.4.0",
1
100pah 已提交
59
    "rollup": "1.28.0",
60
    "rollup-plugin-commonjs": "8.4.1",
S
sushuang 已提交
61
    "rollup-plugin-node-resolve": "3.0.0",
1
100pah 已提交
62 63
    "rollup-plugin-typescript2": "0.25.3",
    "rollup-plugin-uglify": "6.0.4",
64 65 66 67
    "seedrandom": "3.0.3",
    "semver": "6.3.0",
    "serve-handler": "6.1.1",
    "slugify": "1.3.4",
1
100pah 已提交
68 69
    "socket.io": "2.2.0",
    "typescript": "3.7.4"
L
lang 已提交
70 71
  }
}