-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.14 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": "@sagacify/hush",
"version": "1.0.1",
"description": "Secrets manager",
"main": "src/hush.js",
"directories": {
"test": "test"
},
"keywords": [
"docker",
"secret"
],
"author": "@quentinG3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sagacify/hush.git"
},
"bugs": {
"url": "https://github.com/Sagacify/hush/issues"
},
"homepage": "https://github.com/Sagacify/hush#readme",
"scripts": {
"format": "semistandard --fix",
"test:spec": "mocha --recursive",
"test:lint": "semistandard --verbose | snazzy",
"test:cover": "nyc --reporter=text-summary --reporter=html npm run test:spec",
"test:coveralls": "nyc npm run test:spec && nyc report --reporter=text-lcov | coveralls",
"test": "npm run test:lint && npm run test:cover"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"semistandard": "^14.2.3",
"snazzy": "^8.0.0"
},
"nyc": {
"include": [
"src/**/*.js"
]
},
"semistandard": {
"env": {
"node": true,
"mocha": true
}
}
}