-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "@fauna/ts-dev-utils",
"version": "0.0.16",
"description": "A collection of lint, format, and build configs used at Fauna for TypeScript projects.",
"main": "index.js",
"scripts": {
"test": "find ./config -name '*.js' -print0 | xargs -0 -n1 node",
"build": "cp ./config/.gitignore .gitignore",
"bump": "node ./scripts/version-bump.js"
},
"files": [
"config/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fauna/ts-dev-utils.git"
},
"author": "Fauna",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/fauna/ts-dev-utils/issues"
},
"homepage": "https://github.com/fauna/ts-dev-utils#readme",
"dependencies": {
"eslint-config-prettier": "^9.1.0",
"mentions-regex": "^2.0.3",
"parse-commit-message": "^5.0.4",
"@eslint/js": "^9.13.0",
"eslint-plugin-simple-import-sort": "^12.1.1"
},
"peerDependencies": {
"eslint": "^9.12.0",
"prettier": "^3.3.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {}
}