-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 2.1 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
{
"name": "iotagent-manager",
"description": "IoT Agent Manager proxy",
"version": "3.5.0-next",
"homepage": "https://github.com/telefonicaid/iotagent-manager",
"author": {
"name": "Daniel Moran",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/telefonicaid/iotagent-manager.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/iotagent-manager/issues"
},
"main": "lib/iotagent-manager",
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage && rm -rf .nyc_output",
"healthcheck": "node ./bin/healthcheck",
"lint": "eslint lib/ bin/iota-manager test/ --cache --fix",
"start": "node ./bin/iotagent-manager",
"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' --reporter spec --exit",
"test:watch": "npm run test -- -w ./lib",
"watch": "watch 'npm test && npm run lint' ./lib ./test"
},
"dependencies": {
"async": "2.6.4",
"body-parser": "~1.20.3",
"express": "4.20.0",
"iotagent-node-lib": "https://github.com/telefonicaid/iotagent-node-lib.git#master",
"logops": "2.1.2",
"mongoose": "8.8.4",
"revalidator": "~0.3.1",
"underscore": "~1.12.1"
},
"devDependencies": {
"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",
"mocha": "8.0.1",
"mongodb": "4.17.2",
"nock": "13.0.3",
"nyc": "~15.1.0",
"prettier": "~2.0.5",
"should": "13.2.3",
"timekeeper": "2.2.0",
"watch": "~1.0.2"
},
"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"
]
},
"keywords": []
}