forked from ajyey/fastmail-masked-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "fastmail-masked-email",
"version": "2.0.1",
"description": "A library for creating, deleting, and updating Fastmail masked emails",
"author": "Andrew Leonard",
"main": "dist/index.js",
"repository": "https://github.com/ajyey/fastmail-masked-email",
"license": "MIT",
"keywords": [
"fastmail",
"masked",
"email"
],
"scripts": {
"build": "run-s fix build:*",
"build:clean": "rimraf ./dist",
"build:compile": "tsc -p tsconfig.json",
"doc": "run-s doc:html && open-cli docs/index.html",
"doc:html": " typedoc src/index.ts --out docs && cp logo.png docs/",
"fix": "run-s fix:*",
"fix:lint": "eslint src --ext .ts --fix",
"fix:prettier": "run-s prettier-format",
"prepare-release": "run-s test build",
"prettier-format-list": "run-script-os",
"prettier-format-list:darwin:linux": "prettier --config .prettierrc 'src/**/*.ts' --list-different",
"prettier-format-list:default": "prettier --config .prettierrc 'src/**/*.ts' --list-different",
"prettier-format-list:win32": "prettier --config .prettierrc \"./src/**/*.ts\" --list-different",
"test": "run-s test:*",
"test:prettier": "run-s prettier-format-list",
"test:lint": "eslint . --ext .ts",
"test:unit": "jest --ci --coverage --passWithNoTests --detectOpenHandles --forceExit -w 1",
"prettier-format": "run-script-os",
"prettier-format:darwin:linux": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-format:default": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-format:win32": "prettier --config .prettierrc \"./src/**/*.ts\" --write",
"prettier-watch": "run-script-os",
"prettier-watch:darwin:linux": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"prettier-watch:default": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"prettier-watch:win32": "onchange \"src/**/*.ts\" -- prettier --write {{changed}}",
"start:dev": "nodemon",
"version:prerelease-alpha": "npm version prerelease --preid=alpha",
"version:prerelease-beta": "npm version prerelease --preid=beta",
"publish:alpha": "run-s build && npm publish --tag alpha",
"publish:beta": "run-s build && npm publish --tag beta",
"upgrade-packages": "npx npm-check-updates -u && npm install"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run prettier-format && npm run lint"
}
},
"dependencies": {
"axios": "^1.4.0",
"debug": "^4.3.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^11.0.1",
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"open-cli": "^7.2.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"run-script-os": "^1.1.6",
"semantic-release": "^21.0.2",
"supports-color": "^9.3.1",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"files": [
"dist",
"!dist/__tests__",
"!dist/__tests__/**/*",
"!dist/__fixtures__",
"!dist/__fixtures__/**/*",
"!dist/__mocks__",
"!dist/__mocks__/**/*",
"!dist/**/*.map",
"!dist/**/*.test.js",
"!dist/**/*.test.js.map",
"!dist/**/*.fixture.js",
"!dist/**/*.fixture.js.map",
"!dist/**/*.log",
"!README.dev.md",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}