-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.31 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
69
70
71
{
"name": "@egendata/client",
"version": "1.2.0",
"description": "Client for Egendata Operator",
"main": "lib/index.js",
"scripts": {
"test": "jest --color",
"test:watch": "jest --watchAll",
"test:debug": "node --inspect-brk node_modules/jest/bin/jest -c jest.config.js --runInBand",
"testAndLint": "npm test && npm run lint",
"patch-release": "npm run testAndLint && npm version patch && npm publish --access public && git push origin master --follow-tags",
"minor-release": "npm run testAndLint && npm version minor && npm publish --access public && git push origin master --follow-tags",
"major-release": "npm run testAndLint && npm version major && npm publish --access public && git push origin master --follow-tags",
"lint": "eslint '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egendata/client.git"
},
"contributors": [
"Adam Näslund <[email protected]>",
"Einar Persson <[email protected]>",
"Johan Öbrink <[email protected]>",
"Alexander Czigler <[email protected]>",
"Radu Achim <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/egendata/client/issues"
},
"homepage": "https://github.com/egendata/client#readme",
"dependencies": {
"@egendata/messaging": "^0.8.0",
"@hapi/joi": "^17.1.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"case": "^1.6.2",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"jose": "^1.10.0",
"moment": "^2.24.0",
"pem-jwk": "^2.0.0",
"ramda": "^0.26.1"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@types/moment": "^2.13.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.0.6",
"jest": "^24.9.0",
"lint-staged": "^9.4.1",
"semantic-release": "^15.13.24",
"supertest": "^4.0.2",
"tar": "^5.0.2",
"uuid": "^3.3.3"
},
"jest": {
"testEnvironment": "node",
"automock": false,
"clearMocks": true
}
}