-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
36 lines (36 loc) · 983 Bytes
/
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
{
"name": "nodesample",
"version": "1.0.0",
"description": "Sample of VSTS deployment ",
"main": "index.js",
"scripts": {
"test": "mocha Tests/*.spec.js",
"report": "mocha Tests/*.spec.js --reporter mocha-junit-reporter",
"security-check": "nsp check",
"pack": "funcpack pack .",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:22/AzureFunctionsSpike/_ssh/node"
},
"author": "Tsuyoshi Ushio",
"license": "ISC",
"dependencies": {
"express": "^4.16.2"
},
"devDependencies": {
"azure-functions-pack": "^0.3.1",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"nsp": "^3.1.0",
"sinon": "^4.1.3"
}
}