This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "azure-functions-pack",
"version": "1.0.0",
"description": "azure-functions-pack",
"license": "MIT",
"repository": "https://github.com/Azure/azure-functions-pack",
"author": "Microsoft Corp.",
"contributors": [
"Chris Anderson <chrande@microsoft.com> (https://github.com/christopheranderson)"
],
"bin": {
"funcpack": "./lib/main.js"
},
"keywords": [
"azure-functions",
"webpack"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive test/**/*.test.ts",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"e2etst": "npm run "
},
"dependencies": {
"commander": "~2.9.0",
"debug": "~2.6.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "~2.5.4",
"webpack": "~3.5.6",
"winston": "~2.3.1"
},
"devDependencies": {
"@types/chai": "3.5.0",
"@types/commander": "~2.3.31",
"@types/debug": "0.0.29",
"@types/mkdirp": "^0.5.1",
"@types/mocha": "2.2.41",
"@types/ncp": "^2.0.1",
"@types/node": "6.0.31",
"@types/rimraf": "0.0.28",
"@types/supertest": "^2.0.3",
"@types/webpack": "~3.0.0",
"@types/winston": "~2.2.0",
"chai": "~3.5.0",
"mocha": "~3.0.0",
"ps-node": "^0.1.6",
"supertest": "^3.0.0",
"ts-node": "~1.0.0",
"tslint": "~5.7.0",
"typescript": "~2.2.0"
},
"engines": {
"node": ">=6.5.0"
}
}