-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@azure-seed/azure-functions-typescript",
"version": "1.2.1",
"description": "Seed project for backend development on Azure Functions with TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/azure-seed/azure-functions-typescript.git"
},
"keywords": [
"api",
"rest",
"azure-functions",
"azure"
],
"author": {
"name": "Burak Tasci",
"email": "me@fulls1z3.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/azure-seed/azure-functions-typescript/issues"
},
"homepage": "https://github.com/azure-seed/azure-functions-typescript#readme",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && webpack --config ./tools/build/webpack.prod.js",
"build:dev": "npm run clean && webpack --config ./tools/build/webpack.prod.js && cp-cli src/local.settings.json dist/local.settings.json",
"ci:before": "greenkeeper-lockfile-update",
"ci:after": "greenkeeper-lockfile-upload",
"lint": "tslint -p ./tsconfig.json --force",
"test": "jest --coverage --colors",
"test:ci": "jest --ci --coverage --colors",
"release": "standard-version"
},
"dependencies": {
"azure-functions-ts-essentials": "1.3.2"
},
"devDependencies": {
"@types/jest": "~22.2.3",
"@types/node": "~10.0.9",
"rimraf": "~2.6.2",
"cp-cli": "~1.1.2",
"webpack": "~3.12.0",
"awesome-typescript-loader": "~3.5.0",
"uglifyjs-webpack-plugin": "~1.2.5",
"copy-webpack-plugin": "~4.5.1",
"jest": "~22.4.3",
"jest-junit-reporter": "~1.1.0",
"ts-jest": "~22.4.6",
"standard-version": "~4.3.0",
"tslint": "~5.10.0",
"backend-tslint-rules": "1.3.0",
"typescript": "~2.8.3",
"node-fetch": "*",
"node-sp-auth": "*",
"sp-pnp-js": "*",
"http": "*",
"request-promise": "*"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/*.spec.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"cache": false,
"silent": true
},
"greenkeeper": {
"ignore": [
"awesome-typescript-loader",
"webpack"
]
}
}