forked from antvis/F2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.03 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
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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@antv/f2",
"version": "3.4.1",
"description": "Charts for mobile visualization.",
"keywords": [
"f2",
"charts",
"mobile",
"visualization",
"data visualization",
"canvas",
"2d draw",
"mobile visualization",
"interactive"
],
"main": "lib/index.js",
"browser": "build/f2.js",
"module": "src/index.js",
"homepage": "https://github.com/antvis/f2",
"author": "https://github.com/orgs/antvis/people",
"repository": {
"type": "git",
"url": "https://github.com/antvis/f2.git"
},
"bugs": {
"url": "https://github.com/antvis/f2/issues"
},
"files": [
"lib",
"build",
"dist",
"bundler"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@lite-js/torch": "~0.2.6",
"babel-eslint": "~7.2.3",
"babel-loader": "^8.0.0",
"babel-plugin-transform-remove-strict-mode": "~0.0.2",
"body-parser": "^1.18.2",
"chai": "~4.0.1",
"commander": "~2.9.0",
"connect": "~3.6.3",
"d3-queue": "~3.0.7",
"debug": "~3.1.0",
"electron": "~1.8.2-beta5",
"eslint": "~3.19.0",
"eslint-config-airbnb": "~15.0.1",
"eslint-config-egg": "~4.2.0",
"eslint-plugin-html": "~3.1.1",
"get-port": "~3.1.0",
"jquery": "^3.3.1",
"jszip": "^3.1.5",
"nightmare": "~2.10.0",
"nunjucks": "~3.0.1",
"open": "~0.0.5",
"parseurl": "~1.3.1",
"pre-commit": "~1.2.2",
"serve-static": "~1.12.4",
"shelljs": "~0.7.8",
"uglify-js": "~3.0.15",
"webpack": "~3.4.1"
},
"scripts": {
"build": "webpack",
"build-lib": "babel src --out-dir lib",
"bundler": "electron ./bundler/app.js",
"ci": "npm run lint && npm run test-all",
"compress": "sh ./bin/compress.sh",
"coverage": "npm run coverage-generator && npm run coverage-viewer",
"coverage-generator": "torch --compile --coverage --renderer --source-pattern src/*.js,src/**/*.js --recursive test/unit",
"coverage-viewer": "torch-coverage",
"demos": "electron ./demos/app.js",
"demos-web": "node ./demos/app.js --web --port 2048",
"dev": "npm run watch & DEBUG=app:* npm run demos-web",
"dist": "rm -rf dist && mkdir dist && npm run build && npm run compress",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"prepublishOnly": "npm run build-lib && npm run dist",
"screenshot": "DEBUG=app:* ./bin/screenshot.js",
"test-all": "npm run test && npm run test-bug",
"test": "torch --compile --renderer --recursive ./test/unit",
"test-bug": "torch --compile --renderer --recursive ./test/bug",
"test-bug-live": "torch --compile --interactive --recursive ./test/bug",
"test-live": "torch --compile --interactive --recursive ./test/unit",
"watch": "webpack --config webpack-dev.config.js"
},
"pre-commit": {
"run": [
"lint",
"test-all"
],
"silent": false
},
"dependencies": {
"@antv/adjust": "~0.1.1",
"@antv/attr": "~0.1.0",
"@antv/scale": "~0.1.2",
"@antv/util": "~1.2.5",
"hammerjs": "^2.0.8"
}
}