| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "@antv/g-base",
- "version": "0.5.15",
- "description": "A common util collection for antv projects",
- "main": "lib/index.js",
- "module": "esm/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "src",
- "package.json",
- "esm",
- "lib",
- "LICENSE",
- "README.md"
- ],
- "scripts": {
- "build": "npm run clean && run-p build:*",
- "build:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
- "build:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
- "clean": "rm -rf esm lib",
- "watch:cjs": "tsc-watch -p tsconfig.json --target ES5 --module commonjs --outDir lib --compiler typescript/bin/tsc",
- "coverage": "npm run coverage-generator && npm run coverage-viewer",
- "coverage-generator": "torch --coverage --compile --source-pattern src/*.js,src/**/*.js --opts tests/mocha.opts",
- "coverage-viewer": "torch-coverage",
- "test": "torch --renderer --compile --opts tests/mocha.opts",
- "test-live": "torch --compile --interactive tests/unit",
- "tsc": "tsc --noEmit",
- "typecheck": "tsc --noEmit"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/antvis/util.git"
- },
- "keywords": [
- "util",
- "antv",
- "g"
- ],
- "publishConfig": {
- "access": "public"
- },
- "author": "https://github.com/orgs/antvis/people",
- "license": "ISC",
- "bugs": {
- "url": "https://github.com/antvis/util/issues"
- },
- "devDependencies": {
- "@antv/torch": "^1.0.0",
- "gl-matrix": "^3.0.0",
- "less": "^4.1.1",
- "npm-run-all": "^4.1.5",
- "tsc-watch": "^4.0.0"
- },
- "homepage": "https://github.com/antvis/util#readme",
- "dependencies": {
- "@antv/event-emitter": "^0.1.1",
- "@antv/g-math": "^0.1.9",
- "@antv/matrix-util": "^3.1.0-beta.1",
- "@antv/path-util": "~2.0.5",
- "@antv/util": "~2.0.13",
- "@types/d3-timer": "^2.0.0",
- "d3-ease": "^1.0.5",
- "d3-interpolate": "^3.0.1",
- "d3-timer": "^1.0.9",
- "detect-browser": "^5.1.0",
- "tslib": "^2.0.3"
- }
- }
|