-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 2.97 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@adorsys/encrypt-down",
"version": "0.0.0-development",
"description": "Encryption layer for level-db",
"main": "index.js",
"browser": {
"src/index.js": "dist/lib.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adorsys/encrypt-down"
},
"keywords": [
"level",
"level-db",
"encryption",
"database"
],
"author": "Gunnar Radzom <[email protected]> (http://adorsys.de/)",
"contributors": [
{
"name": "Jan-Otto Kröpke",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/adorsys/encrypt-down/issues"
},
"homepage": "https://github.com/adorsys/encrypt-down#readme",
"standard": {
"ignore": [],
"globals": [],
"plugins": [
"markdown",
"html"
]
},
"scripts": {
"lint": "standard --verbose | snazzy",
"format": "prettier-standard '**/*.js'",
"test": "nyc --reporter=lcov --reporter=text ava",
"test:integ-browser": "airtap --loopback airtap.local test/integrations/leveljs.test.js",
"test:integ-browser-chrome": "airtap -p chrome --coverage test/integrations/leveljs.test.js",
"test:integ-browser-local": "airtap -p local --coverage test/integrations/leveljs.test.js",
"test:integ-node": "tape test/integrations/leveldown.test.js test/integrations/memdown.test.js | tap-spec",
"test:ci": "npm run test && npm run test:integ-node && npm run test:integ-browser",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "browserify -s encryptdown -e src/index.js -o dist/lib.js",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.js": [
"prettier-standard"
]
},
"ava": {
"files": [
"test/*.test.js"
],
"verbose": true
},
"dependencies": {
"@adorsys/jwe-codec": "^1.0.2",
"abstract-leveldown": "^6.3.0",
"inherits": "^2.0.4",
"level-errors": "^2.0.1",
"node-jose": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@octokit/core": "^3.2.1",
"@types/abstract-leveldown": "^5.0.1",
"@types/memdown": "^3.0.0",
"@types/node-jose": "^1.1.5",
"airtap": "^4.0.1",
"airtap-sauce": "^1.1.0",
"airtap-system": "0.0.2",
"ava": "^3.13.0",
"browserify": "^17.0.0",
"coveralls": "^3.1.0",
"cuid": "^2.1.8",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-markdown": "^1.0.2",
"husky": "^4.3.0",
"level-concat-iterator": "^2.0.1",
"level-js": "^5.0.2",
"leveldown": "^5.6.0",
"lint-staged": "^10.5.1",
"memdown": "^5.1.0",
"nyc": "^15.1.0",
"prettier-standard": "^16.4.1",
"semantic-release": "^17.2.2",
"snazzy": "^9.0.0",
"standard": "^16.0.1",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"tempy": "^1.0.0"
}
}