forked from faastjs/faast.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.58 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.58 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "faastjs",
"version": "0.0.0-semantic-release",
"description": "Serverless batch computing made simple.",
"main": "dist/index.js",
"types": "dist/faastjs.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/faastjs/faast.js"
},
"bugs": {
"url": "https://github.com/faastjs/faast.js/issues"
},
"keywords": [
"faast.js",
"faastjs",
"serverless",
"aws",
"lambda",
"cloud functions",
"batch"
],
"scripts": {
"build": "npm run clean && npx tsc && npm run doc",
"watch": "npm run clean && npx tsc --watch",
"doc": "node build/make-docs.js",
"set-gcp-key": "node build/google-save-key.js",
"test": "ava --concurrency=8 --timeout=4m",
"test-local": "ava --concurrency=4 -m='!remote*'",
"test-aws": "ava --concurrency=8 --timeout=3m -m='!remote*' -m='*aws*'",
"test-google": "ava --concurrency=4 --timeout=4m -m='!remote*' -m='*google*'",
"test-aws-remote": "ava --concurrency=8 --timeout=3m -m='remote*aws*'",
"test-google-remote": "ava --concurrency=4 --timeout=4m -m='remote*google*'",
"test-debug": "DEBUG=faast:provider,faast:info ava --fail-fast --serial",
"test-release": "rm -rf test-release && mkdir test-release && cp examples/*.ts test-release && cp examples/*.json test-release && npm pack && cp faastjs-$npm_package_version.tgz test-release && cd test-release && npm install faastjs-$npm_package_version.tgz && npm run build && node dist/hello-world.js",
"cleanup-cloud": "node dist/src/cli.js cleanup aws -x -f && node ./dist/src/cli.js cleanup google -x -f",
"clean": "rm -rf dist",
"tslint": "npx tslint -p tsconfig.json",
"codecov": "codecov",
"semantic-release": "semantic-release",
"commit": "npx git-cz"
},
"author": {
"name": "Andy Chou",
"email": "andy@faastjs.org"
},
"license": "Apache-2.0",
"bin": {
"faastjs": "./dist/src/cli.js"
},
"engines": {
"node": ">=8.0"
},
"dependencies": {
"archiver": "^3.0.0",
"aws-sdk": "^2.441.0",
"commander": "^2.20.0",
"debug": "^4.1.1",
"fs-extra": "^7.0.1",
"googleapis": "^39.2.0",
"listr": "^0.14.3",
"memory-fs": "^0.4.1",
"ora": "^3.4.0",
"process-doctor": "^1.0.0",
"tslib": "^1.9.1",
"uuid": "^3.2.1",
"verror": "^1.10.0",
"webpack": "^4.30.0",
"webpack-node-externals": "^1.7.2",
"yauzl": "^2.10.0",
"@types/verror": "^1.10.3",
"@types/debug": "^4.1.4",
"@types/webpack": "^4.4.27"
},
"peerDependencies": {
"@types/node": ">=8.0"
},
"devDependencies": {
"@microsoft/api-documenter": "7.1.3",
"@microsoft/api-extractor": "7.1.1",
"@types/archiver": "2.1.3",
"@types/aws-lambda": "8.10.25",
"@types/express": "4.16.1",
"@types/listr": "0.14.0",
"@types/loader-utils": "1.1.3",
"@types/lolex": "3.1.1",
"@types/memory-fs": "0.3.2",
"@types/node": "11.13.9",
"@types/papaparse": "4.5.9",
"@types/tar-stream": "1.6.0",
"@types/uuid": "3.4.4",
"@types/webpack-node-externals": "1.6.3",
"@types/yauzl": "2.9.1",
"ava": "1.4.1",
"codecov": "3.3.0",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"lolex": "4.0.1",
"nyc": "14.1.0",
"papaparse": "4.6.3",
"semantic-release": "15.13.3",
"tslint": "5.16.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.4.5",
"webpack-cli": "3.3.1"
},
"ava": {
"files": [
"dist/test/*.test.js"
]
},
"prettier": {
"printWidth": 90,
"tabWidth": 4
},
"nyc": {
"exclude": [
"tmp/**",
"test/fixtures/**",
"coverage/**",
"**/node_modules/**",
"src/trace.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text"
],
"check-coverage": true,
"lines": 10
},
"renovate": {
"extends": [
"config:base"
],
"automerge": true,
"prHourlyLimit": 1,
"semanticCommits": true
},
"release": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}