-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
114 lines (114 loc) · 3.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "fiware-pep-proxy",
"version": "8.3.0",
"license": "MIT",
"description": "PEP oauth2 authentication proxy for FIWARE GE services",
"author": "GING DIT UPM",
"bugs": {
"url": "https://github.com/ging/fiware-pep-proxy/issues"
},
"homepage": "https://fiware-pep-proxy.readthedocs.io/en/latest/",
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.3.3",
"errorhandler": "1.x",
"escape-html": "1.0.3",
"express": "4.x",
"got": "^11.8.2",
"handlebars": "^4.7.7",
"http-status-codes": "^2.1.4",
"is-hex": "^1.1.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"underscore": "1.12.1",
"xml2js": "0.4.23",
"xml2json": "0.12.0"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"chai": "4.3.4",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-tamia": "^7.2.7",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"memfs": "3.4.1",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nock": "13.2.1",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"remark-cli": "^10.0.1",
"remark-preset-lint-recommended": "^6.1.2",
"should": "13.2.3",
"sinon": "12.0.1",
"sinon-chai": "3.7.0",
"textlint": "^12.1.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-terminology": "^2.1.5",
"textlint-rule-write-good": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ging/fiware-pep-proxy"
},
"contributors": [
{
"name": "Alvaro Alonso",
"email": "[email protected]"
},
{
"name": "Javier Cerviño",
"email": "[email protected]"
}
],
"scripts": {
"start": "node ./bin/www",
"debug": "DEBUG=pep-proxy:* node ./bin/www",
"healthcheck": "node ./bin/healthcheck.js",
"lint": "eslint . --cache --fix",
"lint:text": "textlint '*.md' 'doc/*.md' 'doc/**/*.md' 'extras/docker/*.md'",
"lint:md": "remark -f 'README.md' 'roadmap.md' 'doc' 'extras/docker'",
"pre-commit": "lint-staged",
"prettier": "prettier --config .prettierrc.json --write **/**/*.js **/*.js *.js",
"prettier:text": "prettier --parser markdown 'README.md' 'doc/**/*.md' 'extras/docker/*.md' --tab-width 4 --print-width 120 --write --prose-wrap always",
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test": "nyc --reporter=html mocha -- --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit --color true",
"test:coverage": "nyc --reporter=lcov mocha -- --recursive 'test/**/*.js' --timeout 3000 --ui bdd --exit --color true",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"prepare": "husky install"
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc.json --write",
"eslint --fix",
"git add"
],
"*.md": [
"prettier --parser markdown --tab-width 4 --print-width 120 --write --prose-wrap always",
"git add"
],
"*.yml": [
"prettier --no-config --tab-width 4 --print-width 120 --write",
"git add"
]
}
}