amis2/packages/amis-core/package.json

101 lines
2.5 KiB
JSON
Raw Normal View History

2022-06-01 15:06:00 +08:00
{
"name": "amis-core",
2022-06-07 13:48:00 +08:00
"version": "2.0.0-rc.2",
2022-06-01 15:06:00 +08:00
"description": "amis-core",
"main": "lib/index.js",
"module": "esm/index.js",
"author": "fex",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/jest-dom": "^5.16.4",
"@types/file-saver": "^2.0.1",
"@types/hoist-non-react-statics": "^3.3.1",
2022-06-06 15:15:37 +08:00
"@types/jest": "^28.1.0",
2022-06-01 15:06:00 +08:00
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
2022-06-02 23:40:23 +08:00
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
2022-06-01 15:06:00 +08:00
"moment-timezone": "^0.5.34",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-license": "^2.7.0",
2022-06-06 15:15:37 +08:00
"ts-jest": "^28.0.3",
2022-06-01 15:06:00 +08:00
"typescript": "^4.6.4"
},
"scripts": {
"build": "npm run clean-dist && NODE_ENV=production rollup -c ",
"dev": "rollup -c -w",
"test": "jest",
"coverage": "jest --coverage",
2022-06-06 15:14:53 +08:00
"clean-dist": "rimraf lib/* esm/*",
"prepublishOnly": "npm run build"
2022-06-01 15:06:00 +08:00
},
"files": [
"lib",
"esm"
],
"dependencies": {
2022-06-07 10:55:33 +08:00
"amis-formula": "*",
2022-06-01 15:06:00 +08:00
"classnames": "2.3.1",
"file-saver": "^2.0.2",
"hoist-non-react-statics": "^3.3.2",
"lodash": "^4.17.15",
2022-06-06 15:15:37 +08:00
"markdown-it": "^12.0.6",
"markdown-it-html5-media": "^0.7.1",
2022-06-01 15:06:00 +08:00
"match-sorter": "^6.3.1",
"mobx": "^4.5.0",
"mobx-react": "^6.3.1",
"mobx-state-tree": "^3.17.3",
"moment": "^2.19.3",
"papaparse": "^5.3.0",
"qs": "6.9.7",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-json-view": "1.21.3",
"react-visibility-sensor": "5.1.1",
2022-06-01 21:35:49 +08:00
"tslib": "^2.3.1",
2022-06-02 13:28:23 +08:00
"uncontrollable": "7.2.1"
2022-06-01 15:06:00 +08:00
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**/*"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"setupFiles": [
"jest-canvas-mock"
],
"testRegex": "/.*\\.test\\.(ts|tsx|js)$",
"moduleNameMapper": {
2022-06-02 10:00:09 +08:00
"\\.(css|less|sass|scss)$": "<rootDir>/../../__mocks__/styleMock.js",
"\\.(svg)$": "<rootDir>/../../__mocks__/svgMock.js"
2022-06-01 15:06:00 +08:00
},
"setupFilesAfterEnv": [
2022-06-02 10:00:09 +08:00
"<rootDir>/../amis-core/__tests__/jest.setup.js"
2022-06-01 15:06:00 +08:00
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.rollup.cache/"
],
"globals": {
"ts-jest": {
2022-06-02 10:00:09 +08:00
"diagnostics": false
2022-06-01 15:06:00 +08:00
}
}
}
}