-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "@welldone-software/env-config",
"version": "1.1.1",
"description": "Small and powerfull config library ",
"main": "src/server.js",
"browser": "src/index.js",
"scripts": {
"test": "jest",
"lint:fix": "prettier-eslint --write \"src/**/*.js\" && eslint src",
"test:watch": "jest --watch",
"precommit": "jest && eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/welldone-software/env-config.git"
},
"keywords": [
"dotenv",
"config"
],
"author": "https://github.com/welldone-software",
"license": "MIT",
"bugs": {
"url": "https://github.com/welldone-software/env-config/issues"
},
"homepage": "https://github.com/welldone-software/env-config#readme",
"pre-commit": [
"precommit"
],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-node": "^6.0.1",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1"
},
"dependencies": {
"dotenv": "^5.0.1",
"lodash": "^4.17.15"
}
}