-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@jazmon/require-env-vars",
"version": "1.2.2",
"description": "Ensure env vars are specified that are in config",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Atte Huhtakangas <[email protected]>",
"license": "MIT",
"repository": {
"url": "git+https://github.com/jazmon/require-env-vars.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/jazmon/require-env-vars/issues"
},
"homepage": "https://github.com/jazmon/require-env-vars#readme",
"files": [
"dist",
"LICENSE",
"README.md"
],
"private": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --pretty --declaration",
"test": "NODE_ENV=test NODE_PATH=src jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --forceExit",
"prepublishOnly": "yarn build"
},
"jest": {
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"json",
"js"
],
"testEnvironment": "node",
"verbose": false
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/morgan": "^1.7.35",
"@types/node": "^10.9.4",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"keywords": [
"node",
"env",
"environment",
"variable",
"var",
"config",
"configuration"
],
"publishConfig": {
"access": "public"
}
}