-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "conev-source-process-env",
"version": "1.0.0",
"description": "conev-source-process-env is an implementation of conev's source to get configuration from process.env.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run buildPublish && npm run lint; exit 0",
"build": "tsc",
"buildPublish": "tsc -p ./publish-config",
"lint": "eslint '**/*.ts' --quiet --fix; eslint '**/*.js' --quiet --fix"
},
"files": [
"dist"
],
"keywords": [
"config",
"environment",
"conev"
],
"author": "Park Si-Yual",
"homepage": "https://github.com/kdPark0723/conev-source-process-env",
"bugs": {
"url": "https://github.com/kdPark0723/conev-source-process-env/issues",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-import": "^2.20.1",
"typescript": "^4.0.5"
}
}