-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 988 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@atools/isomorphic-channel",
"version": "2.0.2",
"description": "Isomorphic channel for Micro Frontends.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src -d lib",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch",
"test:coverage": "jest --config jest.config.js --coverage",
"lint": "eslint --config .eslintrc src",
"lint:fix": "eslint --config .eslintrc src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"devDependencies": {
"@babel/cli": "^7.x",
"@babel/core": "^7.x",
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.x",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^3.x"
},
"dependencies": {
"xajs": "^1.x"
},
"files": [
"lib"
]
}