forked from FormidableLabs/serverless-jetpack
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.25 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
{
"name": "serverless-jetpack",
"version": "0.10.7",
"description": "A faster JavaScript packager for Serverless applications.",
"main": "index.js",
"repository": "https://github.com/FormidableLabs/serverless-jetpack",
"author": "Ryan Roemer <[email protected]>",
"license": "MIT",
"keywords": [
"serverless",
"serverless artifact",
"serverless package",
"serverless plugin",
"amazon web services",
"aws",
"lambda",
"npm",
"yarn"
],
"scripts": {
"preversion": "yarn run check",
"clean": "del-cli \"test/packages/*/*/.serverless\" .test-zips",
"build:toc": "doctoc --github --notitle --maxlevel 4 README.md",
"build": "yarn build:toc",
"benchmark:install": "node test/script.js install",
"benchmark:build": "node test/script.js build",
"benchmark:test": "mocha test/benchmark.js",
"benchmark:size": "node test/script.js size",
"benchmark": "node test/script.js benchmark",
"test:cli": "mocha test/cli",
"test:spec": "mocha test/spec",
"lint": "eslint .",
"test": "yarn test:spec",
"concat-locks": "node scripts/concat-locks.js",
"check:git-dirty": "test -z \"$(git status --porcelain)\" || (echo \"ERROR: Found git dirty files:\n$(git status --porcelain)\" && exit 1)",
"check": "yarn lint && yarn test:spec"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"archiver": "^3.1.1",
"globby": "^9.2.0",
"inspectdep": "^0.2.0",
"jest-worker": "^25.5.0",
"make-dir": "^3.0.2",
"nanomatch": "^1.2.13",
"p-limit": "^2.3.0",
"trace-deps": "^0.3.3"
},
"devDependencies": {
"adm-zip": "^0.4.14",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^4.0.0",
"del": "^5.1.0",
"del-cli": "^3.0.0",
"doctoc": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-formidable": "^4.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-promise": "^4.2.1",
"execa": "^4.0.0",
"fs-extra": "^9.0.0",
"markdown-table": "^2.0.0",
"mocha": "^7.1.1",
"mock-fs": "^4.11.0",
"p-queue": "^6.3.0",
"serverless": "^1.67.2",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"strip-ansi": "^6.0.0"
}
}