-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.62 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@rproenza/rrp-services-prpl",
"version": "2.1.5",
"description": "Express web server to make differential serve according with the clients capabilities",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint && npm run copy-static-assets",
"serve": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"test": "npm run build && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"copy-static-assets": "node copyStaticAssets.js",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.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\"",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/rproenza86/rrp-services-prpl.git"
},
"keywords": [
"node",
"express",
"prpl",
"polymer"
],
"author": "Raul R. Proenza",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rproenza86/rrp-services-prpl/issues"
},
"homepage": "https://github.com/rproenza86/rrp-services-prpl#readme",
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"release": {
"branch": "master"
},
"dependencies": {
"async": "^2.1.2",
"body-parser": "^1.15.2",
"browser-capabilities": "^0.2.1",
"chai": "^4.1.2",
"compression": "^1.6.2",
"connect-mongo": "^2.0.0",
"dotenv": "^4.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.2",
"express-validator": "^4.3.0",
"fbgraph": "^1.3.0",
"lodash": "^4.17.4",
"lusca": "^1.4.1",
"mocha": "^4.0.1",
"mongoose": "^4.6.6",
"morgan": "^1.7.0",
"node-rest-client": "^3.1.0",
"nodemailer": "^4.3.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prpl-server": "^1.0.0",
"request": "^2.78.0"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/body-parser": "^1.16.2",
"@types/colors": "^1.1.3",
"@types/compression": "0.0.34",
"@types/connect-mongo": "0.0.34",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.0.35",
"@types/express-session": "^1.15.5",
"@types/jest": "^21.1.5",
"@types/lodash": "^4.14.63",
"@types/mongodb": "^2.1.43",
"@types/mongoose": "^4.7.9",
"@types/morgan": "^1.7.32",
"@types/node": "^4.0.0",
"@types/nodemailer": "^3.1.5",
"@types/passport": "^0.3.3",
"@types/request": "2.0.7",
"@types/supertest": "^2.0.0",
"codacy-coverage": "^2.0.3",
"colors": "^1.1.2",
"concurrently": "^3.4.0",
"istanbul": "^0.4.5",
"jest": "21.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.11.0",
"semantic-release": "^8.2.0",
"shelljs": "^0.7.7",
"supertest": "^3.0.0",
"ts-jest": "^21.2.1",
"tslint": "^5.0.0",
"typescript": "^2.4.0"
}
}