This repository has been archived by the owner on Feb 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
127 lines (127 loc) · 3.16 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
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@ssense/framework",
"version": "0.4.2",
"description": "Base framework regrouping all SSENSE's utilities for Node.js developers",
"main": "./js",
"typings": "index.d.ts",
"scripts": {
"build": "rm -rf js && tsc",
"lint": "tslint --project tsconfig-linter.json -c tslint.json ./src/{,**/}*.ts ./tests/unit/{,**/}*.ts",
"test": "NODE_ENV=test mocha tests/unit --recursive --require ts-node/register --bail ./tests/{,**/}*.ts",
"cover": "nyc --report-dir tests/coverage npm run test",
"coveralls": "cat tests/coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublish": "npm run build"
},
"keywords": [
"ssense",
"framework",
"tools",
"utilities"
],
"homepage": "https://github.com/Groupe-Atallah/ms-product#readme",
"author": "SSENSE Dev Team",
"contributors": [
{
"name": "Rémy Jeancolas",
"email": "remy.jeancolas@ssense.com"
},
{
"name": "Hugo Pelletier",
"email": "hugo.pelletier@ssense.com"
},
{
"name": "Yasser Akhoondi",
"email": "yasser.akhoondi@ssense.com"
},
{
"name": "Ilyess Bachiri",
"email": "ilyess.bachiri@ssense.com"
},
{
"name": "Ashley Simpson",
"email": "ashley.simpson@ssense.com"
},
{
"name": "Sam-Nicolai Johnston",
"email": "sam-nicolai.johnston@ssense.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SSENSE/node-framework"
},
"bugs": {
"url": "https://github.com/SSENSE/node-framework/issues"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"@types/mongoose": "^4.7.20",
"@types/mongoose-paginate": "^5.0.5",
"@types/node": "^8.0.15",
"agentkeepalive": "^3.3.0",
"ioredis": "^3.1.4",
"moment": "^2.18.1",
"mongoose": "^4.11.7",
"mongoose-auto-increment": "^5.0.1",
"mongoose-paginate": "^5.0.3",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"request": "^2.81.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/ioredis": "0.0.25",
"@types/mocha": "^2.2.41",
"@types/mock-require": "^1.3.3",
"@types/mongoose-auto-increment": "^5.0.30",
"@types/mysql": "^2.15.2",
"@types/nock": "^8.2.1",
"@types/request": "^2.0.3",
"@types/sinon": "^2.3.3",
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"mocha": "^5.0.0",
"mock-require": "^2.0.2",
"mysql": "^2.15.0",
"nock": "^9.0.14",
"nyc": "^11.0.3",
"sinon": "^2.3.8",
"ts-node": "^3.2.1",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.2",
"typescript": "^2.6.2"
},
"peerDependencies": {
"mysql": ">= 2.12.0 < 3"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"**/index.ts",
"**/*.d.ts",
"src/cache/Cache.ts",
"src/pubsub/parser/Provider.ts",
"src/http/validation/RequestValidation.ts",
"src/http/validation/RequestValidatorConfig.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text-summary",
"lcov"
],
"all": true
}
}