-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "conev-core",
"version": "1.3.1",
"description": "Conev is a module that build environment variables from a `source` into `config`.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "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"
],
"author": "Park Si-Yual",
"homepage": "https://github.com/kdPark0723/conev-core",
"bugs": {
"url": "https://github.com/kdPark0723/conev-core/issues",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^2.22.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.1.2"
}
}