This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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": "serverless-build-plugin",
"version": "3.2.0",
"description": "A Node.js focused build optimizer plugin for serverless",
"main": "./index.js",
"engines": {
"node": ">= 4.3"
},
"scripts": {
"build": "./scripts/build.bash",
"build:watch": "tsc --watch",
"build:link": "yarn build && cd dist && yarn unlink && yarn link",
"test": "jest src",
"test:coverage": "jest src --coverage",
"test:dist": "jest -c '{}' dist",
"test:prepare": "cd test/1.0 && yarn",
"release": "cd dist && yarn publish",
"lint": "tslint 'src/**/*.ts'",
"preversion": "yarn build && yarn test"
},
"dependencies": {
"archiver": "^2.0.0",
"bluebird": "^3.5.0",
"chalk": "^2.1.0",
"fs-extra": "^4.0.1",
"get-folder-size": "^1.0.0",
"is-stream": "~1.1.0",
"js-yaml": "^3.9.1",
"lutils": "^2.4.0",
"minimatch": "^3.0.4",
"mkdirp": "~0.5.1",
"resolve-pkg": "^1.0.0",
"semver": "^5.4.1",
"source-map-support": "^0.4.15",
"ts-node": "^3.3.0",
"typescript": "^2.3.0",
"walker": "^1.0.7"
},
"devDependencies": {
"@types/archiver": "^2.0.0",
"@types/babel-core": "^6.25.0",
"@types/bluebird": "^3.5.8",
"@types/chalk": "^0.4.31",
"@types/fs-extra": "^4.0.0",
"@types/fs-promise": "^1.0.3",
"@types/graceful-fs": "^2.0.29",
"@types/jest": "^20.0.6",
"@types/js-yaml": "^3.9.0",
"@types/minimatch": "^2.0.29",
"@types/mkdirp": "^0.5.0",
"@types/node": "^8.0.19",
"@types/semver": "^5.3.33",
"@types/source-map-support": "^0.4.0",
"@types/typescript": "^2.0.0",
"@types/uglify-js": "^2.6.29",
"jest": "^20.0.4",
"ts-jest": "^20.0.10",
"tslint": "^5.6.0",
"tslint-config-temando": "^1.2.0",
"uglify-js": "3"
},
"repository": {
"type": "git",
"url": "https://github.com/nfour/serverless-build-plugin"
}
}