wisemapping-frontend/packages/mindplot/package.json

49 lines
1.5 KiB
JSON
Raw Normal View History

2021-07-16 16:41:58 +02:00
{
"name": "@wisemapping/mindplot",
2023-01-03 04:36:22 +01:00
"version": "5.0.19",
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",
2022-03-27 01:07:45 +01:00
"test:unit": "jest ./test/unit/export/*.ts ./test/unit/import/*.ts ./test/unit/layout/*.js --verbose --silent --detectOpenHandles",
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
},
"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",
"emoji-picker-react": "^4.4.3",
2021-12-19 09:44:08 +01:00
"jquery": "3.6.0",
2022-02-25 01:17:53 +01:00
"lodash": "^4.17.21",
"xml-formatter": "^2.6.1"
2021-07-16 16:41:58 +02:00
},
"devDependencies": {
2022-01-02 19:37:33 +01:00
"blob-polyfill": "^6.0.20211015",
2023-01-07 22:47:53 +01:00
"cypress": "^12.3.0",
"cypress-image-snapshot": "^4.0.1",
"mocha": "^9.1.3"
2021-07-16 16:41:58 +02:00
}
2021-12-20 05:11:47 +01:00
}