-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.54 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.54 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "dotenvrc",
"version": "1.0.1",
"description": "Read .envrc",
"main": "index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev --respawn src/index.ts",
"tsc": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist/*",
"build": "npm-run-all clean tsc && cp package.json README.md LICENSE dist/",
"lint": "eslint --ext .ts,.js src/",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --ext .ts,.js",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/reedom/dotenvrc"
},
"keywords": [
"direnv",
".envrc",
"envrc",
"shell",
"config",
"settings",
"export",
"environment",
"variable",
"sh",
"posix",
"bash",
"zsh",
"dotenv",
"jest"
],
"author": "HANAI, Tohru",
"license": "MIT",
"bugs": {
"url": "https://github.com/reedom/dotenvrc/issues"
},
"homepage": "https://github.com/reedom/dotenvrc/",
"dependencies": {
"bash-parser": "^0.5.0"
},
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/jest": "^25.1.4",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"husky": "^3.0.8",
"jest": "^25.1.0",
"lint-staged": "^9.4.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.4.1",
"ts-node-dev": "^1.0.0-pre.43",
"typescript": "^3.6.3"
}
}