forked from single-spa/import-map-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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
67
{
"name": "import-map-deployer",
"version": "3.1.1",
"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",
"lint": "eslint src",
"format": "prettier --write './**/*'",
"start": "node src/web-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/import-map-deployer.git"
},
"keywords": [
"sofe"
],
"author": "nhumrich",
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/single-spa/import-map-deployer/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint && yarn test"
}
},
"homepage": "https://github.com/single-spa/import-map-deployer#readme",
"dependencies": {
"@azure/storage-blob": "^12.1.2",
"@google-cloud/storage": "^3.0.3",
"aws-sdk": "^2.2.27",
"basic-auth": "^1.0.3",
"body-parser": "^1.14.2",
"dotenv": "^8.2.0",
"express": "^4.13.3",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"morgan": "^1.8.1",
"request": "^2.79.0",
"rwlock": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-node-important-stuff": "^1.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}