-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"type": "module",
"name": "self-hosted-shared-dependencies",
"version": "2.0.1",
"description": "Self host npm dependencies",
"main": "lib/self-hosted-shared-dependencies.js",
"scripts": {
"test": "node bin/self-hosted-shared-dependencies-cli.js build test/happy-path/conf.js --clean",
"lint": "eslint lib bin",
"format": "prettier --write .",
"check-format": "prettier --check .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable && tsc",
"postpublish": "pinst --enable"
},
"bin": {
"shared-deps": "bin/self-hosted-shared-dependencies-cli.js"
},
"engines": {
"node": ">=14"
},
"files": [
"types",
"lib",
"bin"
],
"types": "types/self-hosted-shared-dependencies.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/self-hosted-shared-dependencies.git"
},
"keywords": [
"single-spa",
"microfrontends",
"shared",
"dependencies",
"systemjs"
],
"author": "Joel Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/single-spa/self-hosted-shared-dependencies/issues"
},
"homepage": "https://github.com/single-spa/self-hosted-shared-dependencies#readme",
"dependencies": {
"ejs": "^3.1.6",
"micromatch": "^4.0.4",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"npm-registry-fetch": "^10.1.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tar": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"eslint": "^7.32.0",
"eslint-config-node-important-stuff": "^1.1.0",
"husky": "^7.0.1",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"typescript": "^4.2.4"
}
}