azure-functions-pack/package.json

65 строки
1.7 KiB
JSON
Исходник Обычный вид История

2017-02-12 13:34:00 +03:00
{
"name": "azure-functions-pack",
2018-01-25 04:12:14 +03:00
"version": "1.0.0",
2017-02-12 13:34:00 +03:00
"description": "azure-functions-pack",
"license": "MIT",
2017-09-15 05:48:49 +03:00
"repository": "https://github.com/Azure/azure-functions-pack",
2017-09-15 07:09:09 +03:00
"author": "Microsoft Corp.",
"contributors": [
"Chris Anderson <chrande@microsoft.com> (https://github.com/christopheranderson)"
],
2017-02-12 13:34:00 +03:00
"bin": {
"funcpack": "./lib/main.js"
2017-02-12 13:34:00 +03:00
},
"keywords": [
"azure-functions",
"webpack"
2017-02-12 13:34:00 +03:00
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
2017-02-12 13:34:00 +03:00
"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",
2017-02-12 13:34:00 +03:00
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"e2etst": "npm run "
},
"dependencies": {
2017-04-19 04:27:42 +03:00
"commander": "~2.9.0",
"debug": "~2.6.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
2017-04-19 04:27:42 +03:00
"rimraf": "~2.5.4",
2017-09-15 07:09:09 +03:00
"webpack": "~3.5.6",
2017-04-19 04:27:42 +03:00
"winston": "~2.3.1"
2017-02-12 13:34:00 +03:00
},
"devDependencies": {
2017-04-19 04:27:42 +03:00
"@types/chai": "3.5.0",
"@types/commander": "~2.3.31",
2017-02-12 13:34:00 +03:00
"@types/debug": "0.0.29",
"@types/mkdirp": "^0.5.1",
2017-04-19 04:27:42 +03:00
"@types/mocha": "2.2.41",
"@types/ncp": "^2.0.1",
2017-02-12 13:34:00 +03:00
"@types/node": "6.0.31",
"@types/rimraf": "0.0.28",
"@types/supertest": "^2.0.3",
"@types/webpack": "~3.0.0",
2017-04-19 04:27:42 +03:00
"@types/winston": "~2.2.0",
"chai": "~3.5.0",
"mocha": "~3.0.0",
"ps-node": "^0.1.6",
"supertest": "^3.0.0",
2017-04-19 04:27:42 +03:00
"ts-node": "~1.0.0",
"tslint": "~5.7.0",
2017-04-19 04:27:42 +03:00
"typescript": "~2.2.0"
2017-02-12 13:34:00 +03:00
},
"engines": {
2017-04-19 04:27:42 +03:00
"node": ">=6.5.0"
2017-02-12 13:34:00 +03:00
}
}