-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "envboss",
"version": "1.1.0",
"description": "package for environment variables",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint ./src --fix",
"test:coverage": "nyc npm test && nyc report --reporter=lcov",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuriabaevzooz/envVars.git"
},
"author": "yuri ab",
"files": [
"src"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/yuriabaevzooz/envVars/issues"
},
"keywords": [
"environment",
"variables",
"environment variables",
"configuration",
"process.env"
],
"homepage": "https://github.com/yuriabaevzooz/envVars#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@typescript-eslint/parser": "^2.6.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"rewire": "^4.0.1"
}
}