-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "k-scratch",
"version": "0.1.7",
"description": "K-Scratch allows you to get, edit and immediately send back changes to Azure Functions for fast prototyping. You can also test run your Functions in Azure without having to log in to the portal",
"main": "build/output/ks.js",
"bin": {
"ks": "build/output/ks.js"
},
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakkaj/k-scratch-node.git"
},
"bugs": {
"url": "https://github.com/jakkaj/k-scratch-node/issues"
},
"keywords": [
"Azure",
"Functions",
"Azure Functions",
"App Service",
"Kudu"
],
"author": "jakkaj",
"license": "MIT",
"homepage": "https://github.com/jakkaj/k-scratch-node#readme",
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/node": "^7.0.13",
"ava": "^0.19.1",
"crlf": "^1.1.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-ava": "^0.17.1",
"gulp-run": "^1.7.1",
"gulp-tsc": "^1.3.2",
"tsc": "^1.20150623.0",
"typescript": "^2.3.2"
},
"dependencies": {
"adm-zip": "^0.4.7",
"async-file": "^2.0.2",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"del": "^2.2.2",
"dotenv": "^4.0.0",
"inversify": "^3.3.0",
"kudu-api": "^1.4.1",
"linq-es2015": "^2.4.22",
"opn": "^5.0.0",
"reflect-metadata": "^0.1.10",
"request": "^2.81.0",
"tmp": "0.0.31",
"viz.js": "^1.7.1",
"walk": "^2.3.9",
"watch": "^1.0.2",
"xml2js": "^0.4.17"
},
"ava": {
"files": [
"build/output_test/tests/runTests/**/*.js"
]
}
}