-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.17 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
70
71
72
73
74
75
{
"name": "cloudfront-ip-ranges",
"version": "1.0.1",
"description": "Get Cloudfront IPs for use in trust proxy configurations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -d",
"build:watch": "npm run build -- -w",
"clean:all": "npm run clean && npm run clean:modules && npm run clean:tests && npm clean:coverage",
"clean:coverage": "rimraf coverage",
"clean:modules": "rimraf node_modules && rimraf dist/node_modules",
"clean:tests": "rimraf test-reports",
"clean": "rimraf dist",
"postdeps:update": "npm install",
"lint": "eslint -c .eslintrc.js",
"lint:all": "npm run lint -- 'src/**/*.ts'",
"lint:staged": "lint-staged",
"prepare": "husky install && npm run build",
"pretest": "jest --clearCache",
"test": "jest --coverage",
"semantic-release": "semantic-release",
"format": "lint-staged --config .lintstagedrc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/nhammond101/cloudfront-ip-ranges.git"
},
"keywords": [
"cloudfront",
"express",
"trust",
"proxy",
"trust proxy",
"cloudfront ip",
"cloudfront ips"
],
"author": "Nick Hammond",
"license": "MIT",
"bugs": {
"url": "https://github.com/nhammond101/cloudfront-ip-ranges/issues"
},
"homepage": "https://github.com/nhammond101/cloudfront-ip-ranges#readme",
"devDependencies": {
"@types/debug": "4.1.7",
"@types/express": "4.17.13",
"@types/jest": "26.0.24",
"@types/node": "12.20.42",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.34.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.6.0",
"husky": "7.0.4",
"jest": "26.6.3",
"jest-junit": "12.3.0",
"lint-staged": "10.5.4",
"prettier": "2.8.2",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"ts-jest": "26.5.6",
"typescript": "4.5.2"
},
"engines": {
"node": ">10"
},
"dependencies": {
"chalk": "4.1.2",
"debug": "4.3.4"
}
}