-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.49 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
67
68
69
70
71
{
"name": "kokua",
"version": "1.3.3",
"description": "Hypermedia Representor Using Hyper+JSON",
"author": "Irakli Nadareishvili",
"license": "MIT",
"main": "./lib/kokua.js",
"repository": {
"type": "git",
"url": "https://github.com/inadarei/kokua"
},
"engines": {
"node": ">=6.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"lodash": "^4.3.0",
"metalogger": "^2.1.0",
"traverse": "^0.6.6",
"snyk": "^1.317.0"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"tape": "^5.2.2",
"coveralls": "^3.0.0",
"eslint": "^7.24.0",
"nyc": "^15.0.0",
"tap-nirvana": "^1.1.0"
},
"scripts": {
"lint": "eslint lib test",
"test": "export NODE_TAPE_OBJECT_PRINT_DEPTH=infinity && nyc blue-tape test/**/*.js | tap-nirvana ",
"test-fast": "blue-tape test/**/*.js | tap-nirvana",
"test-cov": "nyc --check-coverage report test/",
"coveralls": "npm run test-cov -- && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"nyc": {
"per-file": true,
"lines": [
75,
95
],
"statements": [
75,
95
],
"functions": [
75,
95
],
"branches": [
75,
95
],
"include": [
"lib/**/*.js"
],
"reporter": [
"text-summary",
"text",
"lcov",
"clover",
"html"
],
"all": true,
"report-dir": "./coverage"
},
"snyk": true
}