forked from ging/fiware-pep-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.96 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
{
"name": "fiware-pep-proxy",
"version": "7.7.0",
"license": "MIT",
"description": "PEP oauth2 authentication proxy for FIWARE GE services",
"author": "GING DIT UPM",
"dependencies": {
"async": "1.5.2",
"errorhandler": "1.x",
"escape-html": "1.0.3",
"express": "4.x",
"is-hex": "^1.1.3",
"jsonwebtoken": "^8.3.0",
"log4js": "0.6.x",
"xml2js": "0.4.17",
"xml2json": "0.9.0",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"chai": "3.5.0",
"eslint": "^5.6.0",
"eslint-config-tamia": "^6.0.1",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.0",
"istanbul": "1.0.0-alpha.2",
"lint-staged": "^7.3.0",
"memfs": "2.9.0",
"mocha": "^2.5.3",
"nock": "9.0.14",
"prettier": "^1.14.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2",
"should": "8.4.0",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"textlint": "^11.0.1",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-no-dead-link": "^4.4.1",
"textlint-rule-terminology": "^1.1.30",
"textlint-rule-write-good": "^1.6.2"
},
"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 server.js",
"pretest": "npm run lint",
"test": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit",
"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'",
"prettier": "prettier --single-quote --trailing-comma es5 --write **/*.js *.js",
"prettier:text": "prettier '*.md' 'doc/*.md' 'doc/**/*.md' 'extras/docker/*.md' --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
},
"lint-staged": {
"*.js": [
"prettier --parser flow --single-quote --trailing-comma es5 --write",
"eslint --fix",
"git add"
],
"*.md": [
"prettier --no-config --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"
]
}
}