-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.48 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
{
"name": "secrets",
"version": "1.1.5",
"description": "Secret handler for Node.js 🗝️",
"main": "src",
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"license": "MIT",
"homepage": "https://github.com/du5rte/secrets#readme",
"author": "Duarte Monteiro <[email protected]> (https://du5rte.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/du5rte/secrets.git"
},
"bugs": {
"url": "https://github.com/du5rte/secrets/issues"
},
"keywords": [
"secret",
"secrets",
"environment",
"env",
".env",
"dotenv",
"variables",
"config",
"settings"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.0.0"
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"env": {
"node": true,
"jest": true
},
"rules": {
"prettier/prettier": "warn"
},
"ignorePatterns": [
"lib/",
"node_modules/"
]
},
"prettier": {
"singleQuote": true,
"semi": false
}
}