-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@modusbox/microfrontend-utils",
"version": "0.0.3",
"main": "lib/index.js",
"license": "MIT",
"author": "Ivan Annovazzi <ivan@modusbox.com>",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.4",
"yarn": "^1.22.10"
},
"scripts": {
"compile": "tsc",
"prepack": "yarn compile",
"test": "jest",
"lint": "eslint --ext .js,.ts src --color",
"lint-staged": "lint-staged",
"docs": "typedoc src/index.ts",
"prepare": "husky install",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js,json}'",
"version": "node -pe \"require('./package.json').version\""
}
}