-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
93 lines (93 loc) · 2.94 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
{
"name": "perseo",
"description": "IOT CEP front End",
"license": "AGPL-3.0-only",
"version": "1.34.0-next",
"author": {
"name": "crbrox",
"email": "carlos.romerobrox@telefonica.com"
},
"repository": {
"type": "git",
"url": "git@github.com:telefonicaid/perseo-fe.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/perseo-fe/issues"
},
"main": "bin/perseo",
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"healthcheck": "node ./bin/healthcheck",
"test": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 5000 --ui bdd --exit --color true",
"test:watch": "npm run test -- -w ./lib",
"lint": "jshint lib/ --config .jshintrc && jshint bin/ --config .jshintrc && jshint test/ --config test/.jshintrc",
"lint:md": "remark -f '*.md' 'docs/*.md'",
"lint:text": "textlint '*.md' 'docs/*.md'",
"prettier": "prettier --config .prettierrc.json --write '**/**/**/**/*.js' '**/**/**/*.js' '**/**/*.js' '**/*.js' '*.js'",
"prettier:text": "prettier 'README.md' 'docs/*.md' 'docs/**/*.md' --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"test:coverage": "nyc --reporter=lcov mocha --recursive 'test/**/*.js' --reporter spec --timeout 5000 --exit --color true",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"watch": "watch 'npm test && npm run lint' ./lib ./test",
"start": "node ./bin/perseo"
},
"devDependencies": {
"chai": "~4.1.2",
"get-func-name": "2.0.0",
"coveralls": "~3.0.2",
"husky": "~1.1.0",
"nyc": "~15.1.0",
"jshint": "~2.9.6",
"lint-staged": "~7.3.0",
"mocha": "5.2.0",
"prettier": "~1.14.2",
"proxyquire": "0.5.1",
"remark-cli": "~8.0.1",
"remark-preset-lint-recommended": "~4.0.1",
"rewire": "~4.0.1",
"should": "8.2.2",
"sinon": "~6.1.0",
"sinon-chai": "~3.2.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"
},
"keywords": [],
"dependencies": {
"async": "2.6.4",
"body-parser": "~1.20.3",
"express": "4.20.0",
"logops": "2.1.2",
"mongodb": "3.6.12",
"ngsijs": "1.4.1",
"nodemailer": "6.9.13",
"nodemailer-smtp-transport": "~2.7.2",
"request": "2.88.2",
"nanoid": "3.3.4",
"smpp": "0.3.1",
"swagger-jsdoc": "~3.4.0",
"swagger-ui-express": "~4.1.1",
"twitter": "~1.7.1",
"uuid": "9.0.0"
},
"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"
]
}
}