-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "mcf",
"version": "2.0.6",
"description": "Modular Crypt Format",
"engines": {
"node": ">=10.15"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/madarche/mcf-js.git"
},
"keywords": [
"modular",
"crypt",
"format",
"crypto",
"database",
"db"
],
"author": "Marc-Aurèle DARCHE <ma.darche@cynode.org> (https://github.com/madarche)",
"license": "MIT",
"bugs": {
"url": "https://github.com/madarche/mcf-js/issues"
},
"homepage": "https://github.com/madarche/mcf-js",
"scripts": {
"test": "mocha --check-leaks -R spec",
"posttest": "npm run lint",
"test:coverage": "istanbul cover _mocha -- --check-leaks test/*.test.js",
"posttest:coverage": "npm run lint",
"test:ci": "istanbul cover _mocha -- --check-leaks test/*.test.js && cat test/coverage/lcov.info | coveralls",
"posttest:ci": "npm run lint",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rm -rf test/coverage"
},
"dependencies": {
"create-error": "0.3.1"
},
"devDependencies": {
"coveralls": "2.11.15",
"eslint": "6.8.0",
"eslint-config-usecases": "https://github.com/madarche/eslint-config-usecases.git#v2.0.0",
"istanbul": "0.4.5",
"mocha": "3.1.2",
"mocha-lcov-reporter": "1.2.0",
"must": "0.13.2"
}
}