-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 3.03 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
{
"name": "channelape-web-service-sdk",
"version": "1.1.0",
"description": "Common services, controllers, and models for ChannelApe TypeScript and JavaScript web services.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "tsc && tsc -p test/tsconfig.json",
"watch": "concurrently -k -p \"[{name}]\" -n \"src,test\" -c \"yellow.bold,cyan.bold\" \"tsc --watch\" \"tsc -p test/tsconfig.json --watch\"",
"unit-test": "mocha --opts ./test/mocha.opts",
"watch-unit-test": "mocha --recursive --compilers ts:ts-node/register --watch test/**/*.spec.* ",
"test": "npm run unit-test",
"pretest": "npm run compile && npm run lint",
"posttest": "npm run mutate && npm run cover",
"cover": "nyc npm run unit-test",
"mutate": "stryker run",
"lint": "tslint -p tsconfig.json && tslint -p test/tsconfig.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ChannelApe/channelape-typescript-web-service-sdk.git"
},
"keywords": [
"channelape",
"sdk",
"web-service",
"web",
"webhook"
],
"publishConfig": {
"access": "public"
},
"author": "ChannelApe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ChannelApe/channelape-typescript-web-service-sdk/issues"
},
"homepage": "https://github.com/ChannelApe/channelape-typescript-web-service-sdk#readme",
"contributors": [
{
"name": "Craig Simko",
"email": "[email protected]"
},
{
"name": "RJ Davis",
"email": "[email protected]"
}
],
"dependencies": {
"aws-sdk": "^2.301.0",
"channelape-logger": "^0.1.6",
"channelape-sdk": "^1.3.0",
"csv-parse": "^3.1.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"json2csv": "^4.2.1",
"moment": "^2.22.2",
"nodemailer": "^4.6.8",
"uuid": "^3.3.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/chai": "^4.1.3",
"@types/compression": "0.0.36",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/json2csv": "^4.2.0",
"@types/mocha": "^2.2.48",
"@types/node": "^7.0.63",
"@types/nodemailer": "^4.6.5",
"@types/q": "^1.5.1",
"@types/sinon": "^4.3.1",
"@types/sinon-express-mock": "^1.3.4",
"@types/uuid": "^3.4.4",
"@types/xml2js": "^0.4.3",
"app-root-path": "^2.0.1",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"eol": "^0.9.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"mocha-typescript": "^1.1.12",
"node-rest-client": "^3.1.0",
"nyc": "^11.7.1",
"q": "^1.5.1",
"sinon": "^4.5.0",
"sinon-express-mock": "^2.0.4",
"stryker": "^0.29.0",
"stryker-api": "^0.21.0",
"stryker-html-reporter": "^0.16.1",
"stryker-mocha-framework": "^0.12.1",
"stryker-mocha-runner": "^0.14.1",
"stryker-typescript": "^0.13.1",
"ts-node": "^6.1.1",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^2.8.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"report-dir": "./reports/lcov"
}
}