package.json 2.3 KB
Newer Older
L
lang 已提交
1
{
L
lang 已提交
2
  "name": "echarts",
1
100pah 已提交
3
  "version": "4.8.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",
P
pissang 已提交
18
    "build:full": "node build/build.js --clean",
1
100pah 已提交
19 20
    "watch": "node build/build.js --watch",
    "release": "node build/build.js --release",
21
    "help": "node build/build.js --help",
22
    "test:visual": "node test/runTest/server.js",
23
    "test:visual:report": "node test/runTest/genReport.js",
24
    "test": "node build/build.js --prepublish && jest --config test/ut/jest.config.js",
25
    "mktest": "node test/build/mktest.js",
26
    "mktest:help": "node test/build/mktest.js -h",
1
100pah 已提交
27
    "lint": "./node_modules/.bin/eslint src/**/*.ts extension-src/**/*.ts",
28
    "lint:dist": "echo 'It might take a while. Please wait ...' && ./node_modules/.bin/jshint --config .jshintrc-dist dist/echarts.js"
L
lang 已提交
29 30
  },
  "dependencies": {
1
100pah 已提交
31
    "zrender": "4.3.1"
L
lang 已提交
32 33
  },
  "devDependencies": {
S
sushuang 已提交
34
    "@babel/core": "7.3.4",
S
sushuang 已提交
35 36 37 38
    "@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 已提交
39 40 41
    "@microsoft/api-extractor": "7.7.2",
    "@typescript-eslint/eslint-plugin": "^2.15.0",
    "@typescript-eslint/parser": "^2.18.0",
42
    "canvas": "^2.6.0",
1
100pah 已提交
43
    "chalk": "^3.0.0",
S
sushuang 已提交
44 45 46
    "commander": "2.11.0",
    "coordtransform": "2.0.2",
    "escodegen": "1.8.0",
47
    "eslint": "6.3.0",
S
sushuang 已提交
48 49
    "esprima": "2.7.2",
    "estraverse": "4.1.1",
P
pissang 已提交
50
    "fs-extra": "0.26.7",
S
sushuang 已提交
51
    "glob": "7.0.0",
1
100pah 已提交
52
    "globby": "11.0.0",
53 54 55 56
    "jest": "^24.9.0",
    "jest-canvas-mock": "^2.2.0",
    "jsdom": "^15.2.1",
    "jshint": "2.10.2",
57 58 59
    "open": "6.4.0",
    "pixelmatch": "5.0.2",
    "pngjs": "3.4.0",
1
100pah 已提交
60
    "rollup": "1.28.0",
61
    "rollup-plugin-commonjs": "8.4.1",
S
sushuang 已提交
62
    "rollup-plugin-node-resolve": "3.0.0",
1
100pah 已提交
63 64
    "rollup-plugin-typescript2": "0.25.3",
    "rollup-plugin-uglify": "6.0.4",
65 66 67 68
    "seedrandom": "3.0.3",
    "semver": "6.3.0",
    "serve-handler": "6.1.1",
    "slugify": "1.3.4",
1
100pah 已提交
69
    "socket.io": "2.2.0",
70
    "typescript": "^3.8.3"
L
lang 已提交
71 72
  }
}