2021-07-16 16:41:58 +02:00
|
|
|
{
|
2021-12-02 01:41:56 +01:00
|
|
|
"name": "@wisemapping/web2d",
|
2022-09-11 22:00:19 +02:00
|
|
|
"version": "0.4.6",
|
2021-12-02 04:00:52 +01:00
|
|
|
"description": "WiseMapping - Web2D Render Library",
|
|
|
|
"homepage": "http://www.wisemapping.org/",
|
2021-12-18 23:55:01 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"main": "dist/web2d.js",
|
2021-07-16 16:41:58 +02:00
|
|
|
"files": [
|
2021-12-23 01:26:59 +01:00
|
|
|
"src",
|
|
|
|
"dist"
|
2021-07-16 16:41:58 +02:00
|
|
|
],
|
2021-12-18 23:55:01 +01:00
|
|
|
"private": false,
|
2021-07-16 16:41:58 +02:00
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.yarnpkg.com"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-10-02 20:20:04 +02:00
|
|
|
"url": "git@bitbucket.org:wisemapping/wisemapping-frontend.git"
|
2021-07-16 16:41:58 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-10-03 17:41:57 +02:00
|
|
|
"dev": "webpack --config webpack.dev.js",
|
2021-09-23 19:33:02 +02:00
|
|
|
"build": "webpack --config webpack.prod.js",
|
2021-12-02 01:41:56 +01:00
|
|
|
"lint": "eslint src",
|
|
|
|
"playground": "webpack serve --config webpack.playground.js",
|
|
|
|
"cy:run": "cypress run",
|
2021-12-17 03:13:54 +01:00
|
|
|
"test:integration": "start-server-and-test playground http-get://localhost:8080 cy:run",
|
|
|
|
"test": "yarn test:integration"
|
2021-07-16 16:41:58 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-11 21:50:34 +02:00
|
|
|
"@babel/core": "^7.18.13",
|
2021-07-16 16:41:58 +02:00
|
|
|
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
|
2022-10-31 06:17:01 +01:00
|
|
|
"@babel/preset-env": "^7.19.4",
|
2021-07-16 16:41:58 +02:00
|
|
|
"babel-loader": "^8.2.2",
|
2021-12-25 02:59:37 +01:00
|
|
|
"clean-webpack-plugin": "^4.0.0",
|
2022-12-01 07:06:21 +01:00
|
|
|
"cypress": "11.2.0",
|
2021-12-02 01:41:56 +01:00
|
|
|
"cypress-image-snapshot": "^4.0.1",
|
2021-10-05 01:56:40 +02:00
|
|
|
"eslint": "^5.16.0",
|
|
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
2022-11-13 00:11:05 +01:00
|
|
|
"eslint-config-standard": "^17.0.0",
|
2021-12-02 01:41:56 +01:00
|
|
|
"eslint-import-resolver-webpack": "^0.13.2",
|
|
|
|
"eslint-plugin-cypress": "^2.12.1",
|
|
|
|
"eslint-plugin-import": "^2.25.3",
|
2021-12-25 02:59:37 +01:00
|
|
|
"html-webpack-plugin": "^5.3.2",
|
2021-09-23 19:33:02 +02:00
|
|
|
"nodemon": "^2.0.12",
|
2021-12-02 01:41:56 +01:00
|
|
|
"start-server-and-test": "^1.14.0",
|
2022-11-12 16:17:06 +01:00
|
|
|
"webpack": "^5.75.0",
|
|
|
|
"webpack-cli": "^4.10.0",
|
|
|
|
"webpack-dev-server": "^4.11.1"
|
2021-07-16 16:41:58 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-03 02:17:00 +01:00
|
|
|
"@wisemapping/core-js": "^0.4.0",
|
2022-12-01 07:06:21 +01:00
|
|
|
"core-js": "^3.15.2",
|
|
|
|
"jquery": "^3.6.0"
|
2022-11-03 02:17:00 +01:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"@wisemapping/core-js": "^0.4.0",
|
2022-12-01 07:06:21 +01:00
|
|
|
"core-js": "^3.15.2",
|
|
|
|
"jquery": "^3.6.0"
|
2021-07-16 16:41:58 +02:00
|
|
|
}
|
2022-12-01 07:06:21 +01:00
|
|
|
}
|