-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.97 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
{
"name": "@fairdataihub/config",
"version": "2.2.3",
"description": "A library for commonly used configs at the FAIR Data Innovations Hub",
"keywords": [
"prettier",
"eslint",
"devmoji",
"commitlint"
],
"homepage": "https://github.com/fairdataihub/config",
"bugs": {
"url": "https://github.com/fairdataihub/config/issues"
},
"author": "FAIR Data Innovations Hub <contact@fairdataihub.org>",
"repository": {
"type": "git",
"url": "git+https://github.com/fairdataihub/config.git"
},
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/index.d.ts",
"license": "MIT",
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "node -r ./esbuild-hook ./scripts/setup",
"build": "npm run clean && npm run type:dts && npm run build:main",
"build:main": "node -r ./esbuild-hook ./scripts/build",
"clean": "node -r ./esbuild-hook ./scripts/clean",
"type:dts": "tsc --emitDeclarationOnly",
"type:check": "tsc --noEmit",
"format": "prettier \"src/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "ava",
"test:coverage": "nyc ava && nyc report --reporter=html",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,json}": [
"npm run lint",
"npm run format",
"npm run build"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/github": "8.1.0",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "18.15.0",
"@types/prompts": "2.4.9",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"ava": "5.3.1",
"commitizen": "4.3.1",
"cspell": "6.31.3",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.23.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"nyc": "15.1.0",
"prettier": "2.8.4",
"prompts": "2.4.2",
"semantic-release": "19.0.5",
"slugify": "1.6.6",
"source-map-support": "0.5.21",
"typescript": "5.5.3"
},
"volta": {
"node": "16.15.0",
"npm": "9.9.3"
},
"dependencies": {
"@fairdataihub/config": "^2.1.0",
"@semantic-release/git": "^10.0.1",
"megasanjay-devmoji": "^1.2.1"
}
}