-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.45 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
{
"name": "dynamic-dotenv",
"version": "1.0.0",
"description": "A version of dotenv that will watch the dotenv file and reload it if it changes",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"build": "babel src/index.js --out-file lib/index.js",
"check-coverage": "jest --coverage",
"commit": "git-cz",
"report-coverage": "codecov",
"semantic-release": "semantic-release",
"tdd": "jest --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/call-a3/dynamic-dotenv.git"
},
"bugs": {
"url": "https://github.com/call-a3/dynamic-dotenv/issues"
},
"homepage": "https://github.com/call-a3/dynamic-dotenv#readme",
"author": {
"name": "Adriaan Callaerts",
"email": "[email protected]",
"url": "https://www.adriaan.me"
},
"license": "MIT",
"keywords": [
"dotenv",
"dynamic",
"watch",
"env",
".env",
"environment",
"variables",
"config",
"settings"
],
"dependencies": {
"chokidar": "^3.0.2",
"dotenv": "^8.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@call-a3/standard": "^1.0.1",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"commitizen": "^4.0.3",
"commitlint": "^8.1.0",
"cz-conventional-changelog": "^3.0.2",
"husky": "^4.0.2",
"jest": "^24.9.0",
"lint-staged": "^10.0.3",
"semantic-release": "^17.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run check-coverage"
}
},
"lint-staged": {
"*.js": "standard --fix"
},
"standard-engine": {
"name": "@call-a3/standard"
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}