forked from telefonicaid/iotagent-node-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.15 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
{
"name": "iotagent-node-lib",
"license": "AGPL-3.0-only",
"description": "IoT Agent library to interface with NGSI Context Broker",
"version": "2.14.0-next",
"homepage": "https://github.com/telefonicaid/iotagent-node-lib",
"keywords": [
"fiware",
"iotagent",
"ngsi",
"context broker"
],
"author": {
"name": "Daniel Moran",
"email": "daniel.moranjimenez@telefonica.com"
},
"repository": {
"type": "git",
"url": "git://github.com/telefonicaid/iotagent-node-lib.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/iotagent-node-lib/issues"
},
"bin": {
"agentConsole": "bin/agentConsole.js",
"iotAgentTester": "bin/iotAgentTester.js"
},
"main": "lib/fiware-iotagent-lib",
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"lint": "eslint lib/ bin/ test/ --cache --fix",
"lint:md": "remark -f '*.md' 'doc/*.md'",
"lint:text": "textlint '*.md' 'doc/*.md'",
"prettier": "prettier --config .prettierrc.json --write '**/**/**/**/*.js' '**/**/**/*.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": "nyc --reporter=text mocha --recursive 'test/**/*.js' --reporter spec --timeout 5000 --ui bdd --exit",
"test:coverage": "nyc --reporter=lcov mocha -- --recursive 'test/**/*.js' --reporter spec --timeout 5000 --exit",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test:watch": "npm run test -- -w ./lib",
"watch": "watch 'npm test && npm run lint' ./lib ./test"
},
"dependencies": {
"async": "2.6.2",
"body-parser": "~1.19.0",
"command-shell-lib": "1.0.0",
"express": "~4.16.4",
"jexl": "2.1.1",
"jison": "0.4.18",
"logops": "2.1.0",
"moment": "~2.24.0",
"moment-timezone": "~0.5.25",
"mongodb": "3.2.3",
"mongoose": "5.7.5",
"mu2": "~0.5.20",
"query-string": "6.5.0",
"request": "2.88.0",
"revalidator": "~0.3.1",
"underscore": "~1.9.1",
"uuid": "~3.3.2"
},
"devDependencies": {
"coveralls": "~3.1.0",
"eslint": "~7.5.0",
"eslint-config-tamia": "~7.2.5",
"eslint-plugin-prettier": "~3.1.4",
"husky": "~4.2.5",
"lint-staged": "~10.2.11",
"prettier": "~2.0.5",
"mocha": "8.0.1",
"nock": "13.0.3",
"nyc": "~15.1.0",
"remark-cli": "~8.0.1",
"remark-preset-lint-recommended": "~4.0.1",
"should": "13.2.3",
"sinon": "~9.0.2",
"textlint": "~11.7.6",
"textlint-rule-common-misspellings": "~1.0.1",
"textlint-rule-no-dead-link": "~4.7.0",
"textlint-rule-terminology": "~2.1.4",
"textlint-rule-write-good": "~1.6.2",
"timekeeper": "2.2.0",
"watch": "~1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"prettier --parser markdown --tab-width 4 --print-width 120 --write --prose-wrap always",
"git add"
],
"*.js": [
"prettier --config .prettierrc.json --write",
"git add"
]
}
}