forked from octodemo/github-craftwork-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.22 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
{
"name": "javascriptoddoreven",
"version": "1.0.0",
"description": "Test sample for Azure Functions",
"main": "index.js",
"scripts": {
"test": "mocha test --reporter mocha-junit-reporter --reporter-options mochaFile=./test/test-results.xml",
"test-local": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffhollan/functions-test-samples.git"
},
"keywords": [
"serverless",
"test",
"azure",
"functions"
],
"author": "Jeff Hollan",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffhollan/functions-test-samples/issues"
},
"homepage": "https://github.com/jeffhollan/functions-test-samples#readme",
"dependencies": {
"@octokit/rest": "^15.12.0",
"axios": "^0.18.0",
"body-parser": "*",
"co": "~4.6.0",
"dotenv": "^4.0.0",
"express": "*",
"jsonwebtoken": ">=7.3.0",
"minimist": "*",
"morgan": "*",
"mz": "~2.7.0",
"proxyquire": "^2.1.0",
"querystring": "^0.2.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"underscore": ">=1.8.3"
},
"devDependencies": {
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"moxios": "^0.4.0",
"sinon": "^6.1.4"
}
}