57 lines
1.8 KiB
JSON
Raw Normal View History

2021-07-16 11:41:58 -03:00
{
"name": "@wisemapping/web2d",
2021-12-24 17:59:37 -08:00
"version": "0.4.5",
2021-12-01 19:00:52 -08:00
"description": "WiseMapping - Web2D Render Library",
"homepage": "http://www.wisemapping.org/",
2021-12-18 14:55:01 -08:00
"license": "MIT",
"main": "dist/web2d.js",
2021-07-16 11:41:58 -03:00
"files": [
2021-12-22 16:26:59 -08:00
"src",
"dist"
2021-07-16 11:41:58 -03:00
],
2021-12-18 14:55:01 -08:00
"private": false,
2021-07-16 11:41:58 -03:00
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
},
"repository": {
"type": "git",
2021-10-02 11:20:04 -07:00
"url": "git@bitbucket.org:wisemapping/wisemapping-frontend.git"
2021-07-16 11:41:58 -03:00
},
"scripts": {
2021-10-03 08:41:57 -07:00
"dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint src",
"playground": "webpack serve --config webpack.playground.js",
"cy:run": "cypress run",
"test:integration": "start-server-and-test playground http-get://localhost:8080 cy:run",
"test": "yarn test:integration"
2021-07-16 11:41:58 -03:00
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
2021-12-24 17:59:37 -08:00
"clean-webpack-plugin": "^4.0.0",
2021-07-16 11:41:58 -03:00
"core-js": "^3.15.2",
"cypress": "^8.4.1",
"cypress-image-snapshot": "^4.0.1",
2021-10-04 16:56:40 -07:00
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
2021-12-24 17:59:37 -08:00
"html-webpack-plugin": "^5.3.2",
"jquery": "3.6.0",
"nodemon": "^2.0.12",
"start-server-and-test": "^1.14.0",
2021-07-16 11:41:58 -03:00
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@wisemapping/core-js": "^0.4.0"
2021-07-16 11:41:58 -03:00
}
2021-12-24 17:59:37 -08:00
}