| 12345678910111213141516171819202122232425262728293031 |
- {
- "name": "@growi/core",
- "version": "4.3.3-RC",
- "description": "GROWI Core Libraries",
- "license": "MIT",
- "keywords": [
- "growi"
- ],
- "main": "src/index.js",
- "files": [
- "src"
- ],
- "scripts": {
- "lint:js": "eslint **/*.{js,jsx}",
- "lint:styles": "stylelint src/styles/scss/**/*.scss",
- "lint": "npm-run-all -p lint:*",
- "test": "jest --verbose"
- },
- "dependencies": {},
- "devDependencies": {
- "jest": "^27.0.6",
- "jest-localstorage-mock": "^2.4.14",
- "npm-run-all": "^4.1.5",
- "ts-jest": "^27.0.4"
- },
- "jest": {
- "setupFiles": [
- "jest-localstorage-mock"
- ]
- }
- }
|