g6/package.json
2019-12-31 12:08:59 +08:00

124 lines
3.4 KiB
JSON

{
"name": "@antv/g6",
"version": "3.3.0",
"description": "A Graph Visualization Framework in JavaScript",
"main": "dist/g6.js",
"module": "dist/g6.esm.js",
"types": "dist/types/index.d.ts",
"browser": "dist/g6.min.js",
"files": [
"package.json",
"esm",
"lib",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"start": "npm run site:develop",
"site:develop": "GATSBY=true gatsby develop --open",
"site:build": "npm run site:clean && GATSBY=true gatsby build --prefix-paths",
"site:clean": "gatsby clean",
"watch": "father-build --esm --file g6 --watch src/index.ts",
"build": "father-build --esm --cjs --file g6 src/index.ts && npm run build:umd",
"build:umd": "webpack --config webpack.config.js --mode production",
"clean": "rimraf esm lib dist",
"lint": "lint-staged",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest",
"test-live": "DEBUG_MODE=1 jest --watch ./tests/unit/graph/tree-graph-spec.ts",
"coverage": "jest --coverage",
"ci": "run-s build coverage",
"doc": "rimraf apis && typedoc",
"dist": "webpack --config webpack.config.js --mode production",
"demos": "start-storybook -p 8080 -c .storybook"
},
"dependencies": {
"@antv/dom-util": "^2.0.1",
"@antv/event-emitter": "~0.1.0",
"@antv/g-base": "^0.1.0-beta.10",
"@antv/g-canvas": "^0.3.2",
"@antv/hierarchy": "^0.6.1",
"@antv/matrix-util": "^2.0.4",
"@antv/path-util": "^2.0.3",
"@antv/scale": "^0.2.0",
"@antv/util": "~2.0.5",
"lodash": "^4.17.15",
"tslib": "^1.10.0"
},
"devDependencies": {
"@antv/gatsby-theme-antv": "^0.9.25",
"@babel/core": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-info": "^5.2.8",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/react": "^5.2.8",
"@types/jest": "^24.0.18",
"@types/node": "^12.12.22",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"event-simulate": "~1.0.0",
"father-build": "^1.17.1",
"gatsby": "^2.17.9",
"gh-pages": "^2.1.1",
"husky": "^3.0.4",
"insert-css": "^2.0.0",
"jest": "^24.9.0",
"jest-electron": "^0.1.7",
"jest-extended": "^0.11.2",
"lint-staged": "^9.2.3",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-i18next": "^11.1.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.2.11",
"typescript": "^3.5.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.{ts}": [
"tslint -c tslint.json --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/g6"
},
"bugs": {
"url": "https://github.com/antvis/g6/issues"
},
"keywords": [
"antv",
"g6",
"graph",
"relational data",
"graph visualization",
"graph editor",
"graph analysis"
],
"homepage": "https://github.com/antvis/g6",
"author": "https://github.com/orgs/antvis/people",
"license": "MIT"
}