-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "fiware-pep-steelskin",
"description": "FIWARE Policy Enforcement Point",
"version": "1.18.0-next",
"homepage": "https://github.com/telefonicaid/fiware-pep-steelskin",
"author": {
"name": "Daniel Moran",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/telefonicaid/fiware-pep-steelskin.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/fiware-pep-steelskin/issues"
},
"main": "lib/fiware-pep-steelskin",
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test": "mocha --recursive 'test/unit/**/*.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",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/unit/**/*.js' --reporter spec --exit",
"watch": "watch 'npm test && npm run lint' ./lib ./test"
},
"dependencies": {
"async": "2.6.4",
"body-parser": "1.20.3",
"express": "4.20.0",
"logops": "2.1.2",
"mustache": "2.3.2",
"node-cache": "5.1.2",
"request": "2.88.2",
"sax": "1.2.4",
"uuid": "8.3.2",
"winston": "2.4.6"
},
"devDependencies": {
"istanbul": "0.4.5",
"jshint": "~2.9.6",
"mocha": "5.2.0",
"nock": "9.0.14",
"proxyquire": "0.5.1",
"should": "8.4.0",
"watch": "~1.0.2"
},
"keywords": []
}