-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.15 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
{
"name": "@gouvfr-anct/lieux-de-mediation-numerique",
"description": "📚 Bibliothèque pour la modélisation des lieux de médiation numérique respectant le standard du schéma de données des lieux de médiation numériques",
"keywords": [
"bibliothèque",
"gouvernement",
"betagouv",
"anct",
"mediation-numerique"
],
"homepage": "https://npmjs.com/package/@gouvfr-anct/lieux-de-mediation-numerique",
"repository": {
"type": "git",
"url": "https://github.com/anct-cartographie-nationale/lieux-de-mediation-numerique.git"
},
"contributors": [
{
"name": "Arthur Belkhayat",
"email": "arthur.belkhayat@beta.gouv.fr",
"url": "https://www.linkedin.com/in/arthur-belkhayat/"
},
{
"name": "Marc Gavanier",
"email": "marc.gavanier@gmail.com",
"url": "https://www.linkedin.com/in/marc-gavanier/"
}
],
"license": "SEE LICENSE IN LICENSE.md",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"scripts": {
"lint.es": "eslint ./src/",
"lint.commit": "npx commitlint --from origin/main --config ./.tooling/.commitlint/commitlint.config.cjs",
"lint-staged": "lint-staged --config=./.tooling/.lintstaged/.lintstagedrc",
"prettier": "prettier --write ./src/",
"prettier.ci": "prettier --check ./src/",
"test": "vitest",
"build.commonjs": "tsc -p ./.tsconfig/tsconfig.cjs.json",
"build.esm": "tsc -p ./.tsconfig/tsconfig.esm.json",
"build": "pnpm build.commonjs && pnpm build.esm"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"vitest": "^2.1.8",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}