-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.7 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.7 KB
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
{
"name": "bin-minify",
"version": "0.0.0",
"description": "Add non-standard binaries to your projects.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/botbits/bin-minify.git"
},
"bugs": {
"url": "https://github.com/botbits/bin-minify/issues"
},
"homepage": "https://github.com/botbits/bin-minify#readme",
"author": "BotBits (sm) (https://github.com/botbits)",
"keywords": [
"serverless",
"binary",
"aws",
"lambda",
"filesystem",
"fs",
"minify",
"compact",
"pack",
"package"
],
"engines": {
"node": ">=8"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"test-integration": "TEST_TYPE=integration npm test",
"test-capture": "TEST_TYPE=capture npm test",
"test-with-coverage": "nyc npm test && nyc report --reporter=text-lcov > ./lcov.info",
"test-node-10": "docker-compose up",
"cleanup-node-10": "docker-compose rm",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"async": "^2.6.1",
"del": "^3.0.0",
"file-dedupe": "^0.1.0",
"filecompare": "^1.0.4",
"fs-extra": "^7.0.0",
"fs-tree-diff": "^1.0.0",
"javascript-natural-sort": "^0.7.1",
"lodash": "^4.17.11",
"miniq": "^1.0.1",
"tmp": "0.0.33",
"trash": "^4.3.0",
"walk-sync": "^0.3.3",
"snyk": "^1.192.4"
},
"devDependencies": {
"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",
"mock-fs": "^4.7.0",
"nyc": "^13.0.1",
"sinon": "^7.1.0",
"tar-fs": "^1.16.3"
},
"snyk": true
}