| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@antv/path-util",
- "version": "3.0.1",
- "description": "A common util collection for antv projects",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "module": "esm/index.js",
- "files": [
- "src",
- "package.json",
- "esm",
- "lib",
- "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 lib && rm -rf esm",
- "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 --opts __tests__/mocha.opts",
- "tsc": "tsc --noEmit",
- "typecheck": "tsc --noEmit"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/antvis/util.git"
- },
- "keywords": [
- "util",
- "antv",
- "g"
- ],
- "author": "https://github.com/orgs/antvis/people",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/antvis/util/issues"
- },
- "devDependencies": {
- "@types/gl-matrix": "^2.4.5",
- "@types/lodash-es": "^4.17.6",
- "@antv/torch": "^1.0.0",
- "chai": "^4.2.0",
- "less": "^3.9.0",
- "npm-run-all": "^4.1.5"
- },
- "homepage": "https://github.com/antvis/util#readme",
- "dependencies": {
- "gl-matrix": "^3.1.0",
- "lodash-es": "^4.17.21",
- "tslib": "^2.0.3"
- }
- }
|