-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "dot-env",
"version": "2.3.0",
"private": true,
"description": "GitHub Action to read .env file and add variables to GITHUB_ENV",
"main": "dist/index.js",
"scripts": {
"run": "node ./dist/index.js",
"build": "npm run lint:fix && ncc build src/main.ts --out dist/ --minify",
"tsc": "npm run clean && tsc",
"clean": "rimraf dist/*",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --ext .js,.ts ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xom9ikk/dotenv.git"
},
"keywords": [
"dotenv",
"env",
"environment",
"node",
"github",
"actions"
],
"author": "Max Romanyuta <xom9ik.code@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"dotenv": "^8.2.0",
"dotenv-expand": "^10.0.0"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vercel/ncc": "^0.25.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}