-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "vusion-micro",
"version": "0.2.5",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"watch": "npm t -- --watch",
"coverage": "jest --coverage",
"lint": "eslint src --fix --ext .ts",
"build": "tsc",
"dev": "tsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.1",
"jest": "^24.9.0",
"lint-staged": "^9.2.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.5.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"eslint --fix",
"npm run lint"
]
},
"dependencies": {
"single-spa": "^5.5.5",
"vusion-micro-data": "^0.0.8"
}
}