-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "@join-com/process-env",
"version": "1.3.0",
"description": "required environment variables",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p .",
"prepublish": "tsc"
},
"lint-staged": {
"*.{ts}": [
"yarn prettier --write",
"git add"
],
"src/**/*.ts": [
"npm run lint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/join-com/process-env.git"
},
"keywords": [
"env",
"required"
],
"author": "JOIN team",
"license": "MIT",
"bugs": {
"url": "https://github.com/join-com/proccess-env/issues"
},
"homepage": "https://github.com/join-com/proccess-env#readme",
"devDependencies": {
"@types/node": "^10.14.9",
"husky": "^1.3.1",
"lint-staged": "^8.2.0",
"prettier": "^1.18.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
}
}