forked from samvera/serverless-iiif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "serverless-iiif",
"version": "4.0.3",
"description": "Lambda wrapper for iiif-processor",
"author": "Michael B. Klein",
"license": "Apache-2.0",
"dependencies": {
"uri-js": "^4.4.1"
},
"devDependencies": {
"aws-sdk": "^2.368.0",
"coveralls": "^3.1.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"iiif-processor": "^3.0.0",
"jest": "^26.4.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]"
],
"testEnvironment": "node",
"moduleDirectories": [
"node_modules"
]
},
"scripts": {
"test": "node scripts/test.js --env=jsdom",
"test-coverage": "node scripts/test.js --env=jsdom --coverage"
}
}