wisemapping-frontend/packages/mindplot/package.json

79 lines
2.6 KiB
JSON
Raw Normal View History

2021-07-16 16:41:58 +02:00
{
"name": "@wisemapping/mindplot",
2022-02-12 03:26:45 +01:00
"version": "5.0.4",
2021-12-02 04:00:52 +01:00
"description": "WiseMapping - Mindplot Canvas Library",
"homepage": "http://www.wisemapping.org/",
2021-07-16 16:41:58 +02:00
"directories": {
"lib": "src",
2021-07-16 16:41:58 +02:00
"test": "__tests__"
},
2022-01-30 11:37:14 +01:00
"main": "src/index.ts",
2021-07-16 16:41:58 +02:00
"files": [
2021-12-22 18:00:56 +01:00
"src",
2021-12-23 01:26:59 +01:00
"assets",
"dist"
2021-07-16 16:41:58 +02:00
],
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
},
"repository": {
"type": "git",
2021-10-02 20:18:58 +02:00
"url": "git@bitbucket.org:wisemapping/wisemapping-frontend.git"
2021-07-16 16:41:58 +02:00
},
"scripts": {
2021-09-30 19:31:26 +02:00
"build": "webpack --config webpack.prod.js",
2021-10-03 17:41:57 +02:00
"dev": "webpack serve --config webpack.dev.js",
"lint": "eslint src --ext js,ts",
"playground": "webpack serve --config webpack.playground.js",
"cy:run": "cypress run",
2021-12-30 01:37:58 +01:00
"test:unit": "jest ./test/unit/export/*.ts ./test/unit/layout/*.js",
2022-01-25 19:10:40 +01:00
"test:integration": "start-server-and-test playground http-get://localhost:8083 cy:run",
"test": "yarn test:unit && yarn test:integration"
2021-07-16 16:41:58 +02:00
},
2021-12-20 05:11:47 +01:00
"private": false,
2021-07-16 16:41:58 +02:00
"dependencies": {
"@types/jquery": "^3.5.11",
2021-12-19 00:24:31 +01:00
"@wisemapping/core-js": "^0.4.0",
2021-12-18 23:55:01 +01:00
"@wisemapping/web2d": "^0.4.0",
2021-12-30 02:10:28 +01:00
"jest": "^27.4.5",
2021-12-19 09:44:08 +01:00
"jquery": "3.6.0",
2021-12-16 02:59:51 +01:00
"lodash": "^4.17.21"
2021-07-16 16:41:58 +02:00
},
"devDependencies": {
"@babel/core": "^7.14.6",
2021-10-05 02:05:34 +02:00
"@babel/preset-env": "^7.14.7",
2021-12-29 02:34:24 +01:00
"@babel/preset-typescript": "^7.16.5",
2021-12-14 16:08:54 +01:00
"@babel/register": "^7.16.0",
2021-12-29 02:34:24 +01:00
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
2021-07-16 16:41:58 +02:00
"babel-loader": "^8.2.2",
2022-01-02 19:37:33 +01:00
"blob-polyfill": "^6.0.20211015",
2021-07-16 16:41:58 +02:00
"clean-webpack-plugin": "^4.0.0-alpha.0",
2021-12-22 05:38:13 +01:00
"compression-webpack-plugin": "^9.2.0",
"copy-webpack-plugin": "^10.0.0",
2021-10-05 02:05:34 +02:00
"core-js": "^3.15.2",
"cypress": "^8.4.1",
"cypress-image-snapshot": "^4.0.1",
"eslint": "^8.4.1",
2021-10-05 02:05:34 +02:00
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-nibble": "^8.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"html-webpack-plugin": "^5.3.2",
2022-01-02 19:37:33 +01:00
"jest-diff": "^27.4.2",
2021-12-14 16:08:54 +01:00
"jest-webpack": "^0.5.1",
2021-12-16 02:59:51 +01:00
"mocha": "^9.1.3",
2021-10-05 02:05:34 +02:00
"nodemon": "^2.0.12",
"start-server-and-test": "^1.14.0",
2021-12-29 02:34:24 +01:00
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
2021-07-16 16:41:58 +02:00
"webpack": "^5.44.0",
2021-12-06 00:20:43 +01:00
"webpack-bundle-analyzer": "^4.5.0",
2021-07-16 16:41:58 +02:00
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
2021-12-31 07:29:40 +01:00
"webpack-merge": "^5.8.0"
2021-07-16 16:41:58 +02:00
}
2021-12-20 05:11:47 +01:00
}