-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.42 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
{
"name": "salesforce-ip-addresses",
"private": false,
"version": "1.0.1",
"description": "A module to expose the list of Salesforce IP addresses from the official docs https://help.salesforce.com/s/articleView?id=000321501&type=1",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "del-cli dist/ && tsc",
"watch": "tsc --watch",
"ci": "npm run lint && npm test",
"ci:commitlint": "commitlint-jenkins --pr-only",
"lint": "eslint . && tsc -p tsconfig-lint.json",
"prepublishOnly": "npm run build && if [ \"$CI\" = '' ] && [ \"$npm_config_dry_run\" != true ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"semantic-release": "SEMANTIC_COMMITLINT_SKIP=1ee4858 semantic-release",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mixmaxhq/salesforce-ip-addresses.git"
},
"author": "Mixmax <[email protected]> (https://mixmax.com)",
"contributors": [
"Eli Skeggs <[email protected]> (https://mixmax.com)",
"Enric Ribas <[email protected]> (https://mixmax.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/salesforce-ip-addresses/issues"
},
"homepage": "https://github.com/mixmaxhq/salesforce-ip-addresses#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@mixmaxhq/commitlint-jenkins": "^1.6.0",
"@mixmaxhq/git-hooks": "^1.3.0",
"@mixmaxhq/prettier-config": "^1.0.2",
"@mixmaxhq/semantic-release-config": "^2.0.2",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-mixmax": "^5.1.0",
"jest": "^27.2.4",
"jest-junit": "^12.3.0",
"prettier": "^2.4.1",
"semantic-release": "^17.4.7",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@mixmaxhq/semantic-release-config"
},
"publishConfig": {
"access": "public"
}
}