-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "@americanairlines/simple-env",
"version": "1.0.5",
"description": "An intuitive, strongly typed, and scalable way to retrieve environment variables",
"keywords": [
"env",
"type",
"environment",
"variables",
"simple",
"typescript"
],
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"build": "tsc -p tsconfig.build.json --pretty",
"build:watch": "npm run build -- -w",
"start": "node dist/index.js",
"start:watch": "nodemon -w dist -e js dist/index.js",
"dev": "npm-run-all -l build -p build:watch start:watch",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"checkstyle": "prettier -l \"src/**/*.ts\"",
"checkstyle:fix": "npm run checkstyle -- --write",
"tsc": "tsc -p tsconfig.build.json --noEmit --incremental false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmericanAirlines/simple-env.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AmericanAirlines/simple-env/issues"
},
"homepage": "https://github.com/AmericanAirlines/simple-env#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"chalk": "^4.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-jest": "^27.0.7",
"ts-node": "^9.0.0",
"typescript": "^4.2.2"
}
}