-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.41 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": "lambda-bin",
"version": "0.0.0",
"description": "Add non-standard binaries to serverless compute.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/botbits/lambda-bin.git"
},
"bugs": {
"url": "https://github.com/botbits/lambda-bin/issues"
},
"homepage": "https://github.com/botbits/lambda-bin#readme",
"author": "BotBits (sm) (https://github.com/botbits)",
"keywords": [
"serverless",
"binary",
"aws",
"lambda",
"filesystem",
"fs",
"minify",
"compact",
"pack",
"package",
"bin-minify"
],
"engines": {
"node": ">=6"
},
"main": "bundle.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"prepare": "./node_modules/.bin/webpack",
"test-with-coverage": "nyc npm test && nyc report --reporter=text-lcov > ./lcov.info"
},
"nyc": {
"exclude": [
"bundle.js",
"coverage/**",
"test/**",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**",
"**/node_modules/**"
]
},
"files": [
"index.js",
"webpack.config.js"
],
"dependencies": {},
"devDependencies": {
"bin-minify": "^0.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.0.1",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
}
}