-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
68
{
"name": "@trutoo/fragment-gateway",
"version": "1.3.1",
"private": true,
"keywords": [
"trutoo",
"fragment",
"gateway"
],
"description": "API gateway for transforming packages into fragments and serving their static files",
"author": {
"name": "Trutoo AB",
"url": "https://www.trutoo.com/"
},
"license": "GPL-3.0",
"repository": "https://github.com/trutoo/fragment-gateway.git",
"bugs": "https://github.com/trutoo/fragment-gateway/issues",
"contributors": [
{
"name": "Erik Hughes",
"email": "[email protected]",
"url": "https://github.com/swiftwork"
}
],
"main": "index.js",
"husky": {
"hooks": {
"commit-msg": "node tools/commit-msg.js"
}
},
"scripts": {
"start": "nodemon -e js -w index.js -w lib index.js",
"docker": "docker run -p 3001:3001 --env-file .env trutoo/fragment-gateway",
"test": "jest",
"test:ci": "jest --runInBand --ci --reporters=default --reporters=jest-junit",
"release": "node -r dotenv/config ./node_modules/.bin/semantic-release"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"minimatch": "^3.0.4",
"nodemon": "^2.0.2",
"request": "^2.88.0",
"semver": "^7.1.2",
"tar": "^6.0.1",
"winston": "^3.2.1",
"winston-azuretable": "^1.1.0",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"semantic-release": "^17.0.2",
"semantic-release-docker": "^2.2.0",
"superagent": "^5.2.1",
"supertest": "^4.0.2"
},
"optionalDependencies": {
"@types/jest": "^25.1.1"
}
}