forked from WollMux/formbox-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.87 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
94
95
96
{
"name": "formbox-api",
"description": "no description",
"version": "1.0.0",
"license": "EUPL-1.1",
"repository": {
"type": "git",
"url": "https://github.com/WollMux/formbox-api"
},
"main": "./dist/index.js",
"files": [
"dist",
"docs"
],
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"build-jenkins": "npm run build-ts && npm run tslint-jenkins",
"serve": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"blue.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"test": "nyc jasmine-ts --config=jasmine.json",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.lint.json",
"tslint-jenkins": "tslint -c tslint.json -p tsconfig.lint.json -o lint.json -t json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"sonar": "sonarqube-scanner-node"
},
"dependencies": {
"async": "^2.6.0",
"base64-async": "^2.1.3",
"body-parser": "^1.18.2",
"consign": "^0.1.6",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-async-handler": "^1.0.1",
"express-list-routes": "^0.1.4",
"express-pathfinder": "^1.1.0",
"express-serve-static-core": "^0.1.1",
"fs": "0.0.1-security",
"get-routes": "^0.2.0",
"https": "^1.0.0",
"injection-js": "^2.2.1",
"json-transformer-node": "^1.0.4",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"reflect-metadata": "^0.1.10",
"simple-ldap-search": "^2.0.4",
"ts-log-debug": "^3.0.1",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/body-parser": "^1.16.8",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.0.39",
"@types/express-serve-static-core": "^4.0.57",
"@types/jasmine": "^2.8.2",
"@types/ldapjs": "^1.0.2",
"@types/lodash": "^4.14.63",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/passport": "^0.4.1",
"@types/request": "^2.47.0",
"concurrently": "^3.4.0",
"jasmine-reporters": "^2.2.1",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.2.1",
"nodemon": "^1.11.0",
"nyc": "^11.3.0",
"request": "^2.83.0",
"shelljs": "^0.7.7",
"sonarqube-scanner-node": "0.0.7",
"supertest": "^3.0.0",
"tslint": "^5.8.0",
"tslint-language-service": "^0.9.6",
"typescript": "^2.6.1"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"report-dir": ".testresults/coverage"
}
}