-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "@medley/etag",
"version": "0.1.0",
"description": "Medley plugin for automatic ETag generation & conditional GET responses",
"author": "Nathan Woltman <[email protected]>",
"license": "MIT",
"main": "etag.js",
"files": [
"etag.js"
],
"engines": {
"node": ">=8"
},
"repository": "github:medleyjs/etag",
"homepage": "https://github.com/medleyjs/etag",
"bugs": "https://github.com/medleyjs/etag/issues",
"keywords": [
"medley",
"plugin",
"etag",
"conditional-get"
],
"nyc": {
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"statements": 100
},
"devDependencies": {
"@medley/medley": "~0.13.0",
"@medley/self-request": "~0.5.0",
"@nwoltman/eslint-config": "~0.6.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0"
},
"scripts": {
"lint": "eslint *.js test/*.js",
"test": "eslint *.js test/*.js && nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}