-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.6 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.6 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
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
{
"name": "fiware-sth-comet",
"description": "The Short Time Historic (STH, aka. Comet) is a component of the FIWARE ecosystem in charge of providing aggregated time series information about the evolution in time of entity attribute values registered using the Orion Context Broker, an implementation of the publish/subscribe context management system exposing NGSI9 and NGSI10 interfaces.",
"version": "2.11.0-next",
"licence": "AGPL-3.0",
"homepage": "https://github.com/telefonicaid/fiware-sth-comet",
"author": {
"name": "Germán Toro del Valle",
"email": "german.torodelvalle@telefonica.com",
"url": "https://www.linkedin.com/in/gtorodelvalle"
},
"repository": {
"type": "git",
"url": "https://github.com/telefonicaid/fiware-sth-comet.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/fiware-sth-comet/issues"
},
"main": "lib/sth",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "node ./lib/sth",
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test": "mocha --recursive 'test/unit/' --reporter spec --timeout 3000 --ui bdd --exit",
"test:watch": "npm run test -- -w ./lib",
"lint": "eslint bin/* lib/ test/ --cache --fix",
"lint:md": "remark -f 'README.md' doc",
"lint:text": "textlint 'README.md' 'doc/*.md' 'doc/**/*.md'",
"prettier": "prettier --config .prettierrc.json --write '**/**/**/*.js' '**/**/*.js' '**/*.js' '*.js'",
"prettier:text": "prettier 'README.md' 'doc/*.md' 'doc/**/*.md' --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/unit/' --reporter spec --timeout 3000 --ui bdd --exit",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"watch": "watch 'npm test && npm run lint' ./lib ./test"
},
"devDependencies": {
"clear-require": "~1.0.1",
"coveralls": "~3.0.2",
"eslint": "~5.16.0",
"eslint-config-tamia": "~6.2.1",
"eslint-plugin-mocha": "~5.2.0",
"eslint-plugin-prettier": "~3.1.0",
"expect.js": "~0.3.1",
"husky": "~1.1.0",
"istanbul": "~0.4.5",
"lint-staged": "~7.3.0",
"mocha": "5.2.0",
"prettier": "~1.14.2",
"proxyquire": "1.7.10",
"remark-cli": "~8.0.1",
"remark-preset-lint-recommended": "~4.0.1",
"request": "2.88.0",
"textlint": "~11.7.6",
"textlint-filter-rule-comments": "~1.2.2",
"textlint-rule-common-misspellings": "~1.0.1",
"textlint-rule-terminology": "~2.1.4",
"textlint-rule-write-good": "~1.6.2",
"watch": "~1.0.2"
},
"dependencies": {
"app-root-path": "~1.2.1",
"async": "~2.0.0-rc.5",
"boom": "7.2.2",
"bytes-counter": "~1.0.0",
"commander": "~2.9.0",
"csv-parser": "~1.9.3",
"hapi": "16.7.0",
"joi": "14.0.6",
"json-csv": "1.5.0",
"lodash": "~4.17.5",
"logops": "2.1.2",
"mkdirp": "~0.5.1",
"mongodb": "~3.6.12",
"object-assign": "~4.1.0",
"progress": "~1.1.8",
"rfc5987-value-chars": "~1.0.0",
"uuid": "~2.0.1"
},
"keywords": [],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc.json --write",
"git add"
],
"*.md": [
"prettier --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"git add"
],
"*.yml": [
"prettier --no-config --write",
"git add"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
}
}