-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "import-map-deployer",
"version": "7.0.0",
"description": "a manifest deployer for sofe",
"main": "src/web-server.js",
"bin": {
"import-map-deployer": "./bin/import-map-deployer"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"format": "prettier --write .",
"start": "node src/web-server.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/import-map-deployer.git"
},
"keywords": [
"sofe"
],
"author": "nhumrich",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/single-spa/import-map-deployer/issues"
},
"homepage": "https://github.com/single-spa/import-map-deployer#readme",
"dependencies": {
"@azure/storage-blob": "^12.24.0",
"@google-cloud/storage": "^6.12.0",
"aws-sdk": "^2.2.27",
"basic-auth": "^1.1.0",
"body-parser": "^1.20.2",
"dotenv": "^8.6.0",
"express": "^4.19.2",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"morgan": "^1.10.0",
"rwlock": "^5.0.0"
},
"devDependencies": {
"husky": "^9.1.5",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.2",
"supertest": "^6.3.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}