forked from jason-fox/lepus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.21 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.21 KB
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
{
"name": "adapter",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"healthcheck": "node ./bin/healthcheck",
"lint": "eslint test/ lib/ controllers/ bin/www --cache --fix",
"lint:md": "remark -S -f '*.md'",
"lint:text": "textlint '*.md'",
"prettier": "prettier --config .prettierrc.json --write **/**/**/*.js **/**/*.js **/*.js *.js",
"test:single": "nyc --reporter=text mocha --recursive 'test/**/*.js' --reporter spec --timeout 5000 --ui bdd --exit --color true -g 'NGSI-LD - Startup tests'",
"test:html": "nyc --reporter=html mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"test": "nyc --reporter=text mocha --recursive 'test/**/*.js' --reporter spec --timeout 5000 --ui bdd --exit --color true",
"test:coverage": "nyc --reporter=lcov mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"bugs": {
"url": "https://github.com/jason-fox/lepus/issues"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"debug": "~4.3.4",
"dotenv": "^17.0.1",
"express": "~4.19.2",
"got": "^11.8.6",
"http-status-codes": "^2.3.0",
"lodash": "^4.17.21",
"moment": "~2.30.1",
"moment-timezone": "^0.5.45",
"morgan": "~1.10.0",
"nocache": "^4.0.0",
"semver": "^7.6.0",
"timekeeper": "^2.3.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "~8.46.0",
"eslint-config-tamia": "~8.1.0",
"eslint-plugin-prettier": "~5.1.3",
"mocha": "10.4.0",
"nock": "13.5.4",
"nyc": "~15.1.0",
"prettier": "~3.2.5",
"remark-cli": "^12.0.0",
"remark-lint-no-undefined-references": "^4.2.1",
"remark-preset-lint-recommended": "^6.1.2",
"should": "13.2.3",
"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"
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended",
"remark-lint-no-undefined-references"
]
}
}