forked from telefonicaid/perseo-fe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "perseo",
"description": "IOT CEP front End",
"license": "AGPL-3.0-only",
"version": "1.8.0-next",
"homepage": "",
"author": {
"name": "crbrox",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:telefonicaid/perseo-fe.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/perseo-fe/issues"
},
"main": "bin/perseo",
"engines": {
"node": ">=8.12.0"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit",
"test:watch": "npm run test -- -w ./lib",
"lint": "jshint lib/ --config .jshintrc && jshint test/ --config test/.jshintrc",
"prettier": "prettier --config .prettierrc.json --write ./**/**/*.js **/*.js *.js",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/**/*.js' --reporter spec --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": {
"coveralls": "~3.0.2",
"husky": "~1.1.0",
"istanbul": "~0.4.5",
"jshint": "~2.9.6",
"lint-staged": "~7.3.0",
"mocha": "5.2.0",
"chai": "~4.1.2",
"proxyquire": "0.5.1",
"prettier": "~1.14.2",
"rewire": "~4.0.1",
"should": "8.2.2",
"watch": "~1.0.2",
"sinon": "~6.1.0",
"sinon-chai": "~3.2.0"
},
"keywords": [],
"dependencies": {
"async": "~0.9.2",
"body-parser": "~1.18.2",
"express": "~4.16.1",
"logops": "2.1.0",
"mongodb": "~2.2.31",
"ngsijs": "~1.2.0",
"nodemailer": "~1.11.0",
"nodemailer-smtp-transport": "~0.1.13",
"request": "~2.83.0",
"twitter": "~1.7.1",
"utm-converter": "~0.1.1",
"uuid": "~1.4.2",
"smpp": "0.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc.json --write",
"git add"
]
}
}