| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {
- "name": "@antv/f2",
- "version": "3.3.3",
- "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"
- },
- "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.0.3",
- "@antv/attr": "~0.0.3",
- "@antv/scale": "~0.0.6",
- "@antv/util": "~1.2.5",
- "hammerjs": "^2.0.8"
- }
- }
|