-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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": "lamool",
"version": "0.0.11",
"description": "Universal AWS Lambda runtime",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf src/**/*.js src/**/*.js.map",
"watch": "tsc --watch",
"pretest": "npm run clean",
"test": "npm run clean && jest",
"test:browser": "webpack-dev-server --config webpack.sandbox.config.js",
"codecov": "npm run test && codecov",
"doc": "typedoc --out ./docs -m \"umd\"",
"lint": "npm run pretty-quick && tslint -c tslint.json 'src/**/*.ts' 'src/**/*.tsx' 'test/**/*.ts' --fix",
"pretty-quick": "pretty-quick",
"precommit": "pretty-quick --staged",
"prepare": "npm run clean && npm run build"
},
"files": [
"src/*.js",
"src/*.d.ts"
],
"types": "src/index.d.ts",
"keywords": [
"amazon",
"aws",
"lambda",
"universal",
"isomorphic",
"web worker",
"worker"
],
"author": "mpppk",
"license": "MIT",
"devDependencies": {
"@types/jest": "24.9.1",
"@types/jszip": "3.4.1",
"@types/node": "10.17.60",
"@types/workerpool": "5.0.0",
"codecov": "3.8.3",
"copy-webpack-plugin": "6.4.1",
"html-webpack-plugin": "5.6.3",
"husky": "3.1.0",
"jest": "26.6.3",
"prettier": "1.19.1",
"pretty-quick": "2.0.2",
"rimraf": "3.0.2",
"source-map-support": "0.5.21",
"ts-jest": "24.3.0",
"ts-loader": "8.4.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typedoc": "0.26.11",
"typescript": "3.9.10",
"webpack": "5.95.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.6.0"
},
"dependencies": {
"aws-sdk": "^2.524.0",
"axios": "^0.27.0",
"jszip": "^3.6.0",
"workerpool": "^5.0.0"
}
}