-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 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
{
"name": "serverless-plugin-ncc",
"description": "A serverless plugin to use @zeit/ncc for bundling",
"version": "0.4.0",
"author": "Jaydeep Solanki <jaydp17@gmail.com> (https://jaydp.com)",
"bugs": {
"url": "https://github.com/jaydp17/serverless-plugin-ncc/issues"
},
"dependencies": {
"archiver": "3.0.0",
"lodash": "^4.17.15",
"make-dir": "1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@jaydp17/eslint-config": "0.1.1",
"@types/archiver": "^2.1.2",
"@types/lodash": "^4.14.118",
"@types/make-dir": "^1.0.3",
"@types/node": "^10.12.27",
"@types/serverless": "^1.18.0",
"@zeit/ncc": "^0.15.2",
"babel-plugin-add-module-exports": "^1.0.0",
"eslint": "^5.9.0",
"prettier": "1.15.2",
"release-it": "^12.4.1"
},
"files": [
"dist/**"
],
"homepage": "https://github.com/jaydp17/serverless-plugin-ncc#readme",
"keywords": [],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"@zeit/ncc": ">=0.15.2"
},
"release-it": {
"github": {
"release": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaydp17/serverless-plugin-ncc.git"
},
"scripts": {
"build": "babel src -d dist --extensions '.ts,.js' --source-maps",
"build:watch": "npm run build -- --watch",
"format": "prettier --write '**/*.{js,json,yaml,yml,md}'",
"lint": "eslint .",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
}
}