-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.79 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
{
"name": "iotagent-isoxml",
"license": "AGPL-3.0-only",
"description": "IoT Agent for ISOXML/ADAPT",
"version": "1.0.0-next",
"main": "lib/iotagent-isoxml",
"author": {
"name": "Jason Fox",
"email": "[email protected]"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git://github.com/FIWARE/iotagent-isoxml.git"
},
"bugs": {
"url": "https://github.com/FIWARE/iotagent-isoxml/issues"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"healthcheck": "node ./bin/healthcheck",
"lint": "eslint bin/iotagent-isoxml lib/ test/ --cache --fix",
"lint:md": "remark -f '*.md' 'docker/*.md' 'docs/*.md'",
"lint:text": "textlint 'README.md' 'docs/*.md'",
"start": "node ./bin/iotagent-isoxml",
"test": "nyc --reporter=text mocha -- --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit --color true",
"test:coverage": "nyc --reporter=lcov mocha -- --recursive 'test/**/*.js' ",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test:single": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit --bail --g 'ISOXML measures'",
"prettier": "prettier --config .prettierrc.json --write **/**/*.js **/*.js *.js",
"prettier:text": "prettier --parser markdown '*.md' 'docker/*.md' 'docs/*.md' --tab-width 4 --print-width 120 --write --prose-wrap always"
},
"dependencies": {
"async": "3.2.4",
"dateformat": "5.0.3",
"express": "~4.18.2",
"express-xml-bodyparser": "^0.3.0",
"iotagent-node-lib": "2.26.0",
"logops": "2.1.2",
"request": "2.88.2",
"underscore": "1.13.6",
"xml": "^1.0.1",
"xml-parser": "^1.2.1",
"xmljs": "^0.3.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "~8.31.0",
"eslint-config-tamia": "~8.0.1",
"eslint-plugin-prettier": "~4.2.1",
"husky": "~8.0.2",
"lint-staged": "^13.1.0",
"mocha": "10.2.0",
"nock": "13.2.9",
"nyc": "^15.1.0",
"prettier": "~2.8.1",
"remark-cli": "~11.0.0",
"remark-preset-lint-recommended": "~6.1.2",
"should": "13.2.3",
"sinon": "~15.0.1",
"textlint": "~12.4.0",
"textlint-rule-common-misspellings": "~1.0.1",
"textlint-rule-terminology": "~3.0.4",
"textlint-rule-write-good": "~2.0.0"
},
"keywords": [
"ADAPT",
"isoxml",
"fiware",
"iso11783",
"ngsi"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc.json --write"
],
"*.md": [
"prettier --no-config --tab-width 4 --print-width 120 --write --prose-wrap always"
],
"*.yml": [
"prettier --no-config --write"
]
}
}