forked from PeerJ/slamscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "slamscan",
"description": "Use lambda to scan s3 files on upload. S3 LAMbda clamSCAN",
"author": "Patrick McAndrew <[email protected]>",
"license": "MIT",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:PeerJ/slamscan.git"
},
"dependencies": {
"app-root-path": "^2.0.1",
"async": "^2.4.0",
"aws-sdk": "^2.48.0",
"clamscan": "^0.8.4",
"config": "^1.26.1",
"fs-extra": "^3.0.0",
"js-yaml": "^3.8.3",
"request": "^2.81.0",
"temp": "^0.8.3",
"valid-url": "^1.0.9"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"mocha": "^3.3.0",
"rewire": "^2.5.2",
"should": "^11.2.1",
"sinon": "^2.2.0"
},
"scripts": {
"jshint": "./node_modules/.bin/jshint */**.js",
"jscs": "./node_modules/.bin/jscs */**.js",
"lint": "npm run jshint && npm run jscs",
"pretest": "NODE_ENV=test npm run lint",
"test": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive -R spec -r should",
"posttest": "NODE_ENV=test ./node_modules/.bin/istanbul check-coverage"
},
"engine": "node >= 4.3.2"
}