-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.34 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
{
"name": "@gouvfr-anct/timetable-to-osm-opening-hours",
"description": "📚 Bibliothèque pour la transformation d'une série de plages horaires représentant un format emploi du temps vers le standard OSM pour les horaires d'ouverture.",
"keywords": [
"bibliothèque",
"gouvernement",
"betagouv",
"OSM Opening hours",
"Open Street Map",
"Timetable",
"Emploi du temps",
"Horaires d'ouverture",
"anct"
],
"homepage": "https://npmjs.com/package/@gouvfr-anct/timetable-to-osm-opening-hours",
"repository": {
"type": "git",
"url": "https://github.com/anct-cartographie-nationale/timetable-to-osm-opening-hours.git"
},
"contributors": [
{
"name": "Romain Cambonie",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/romain-cambonie/"
},
{
"name": "Marc Gavanier",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/marc-gavanier/"
}
],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"scripts": {
"lint": "eslint --config=./.tooling/.eslint/.eslintrc.cjs ./src/",
"lint-staged": "lint-staged --config=./.tooling/.lintstaged/.lintstagedrc",
"prettier": "prettier --config=./.tooling/.prettier/.prettierrc.cjs --write ./src/",
"prettier.check": "prettier --config=./.tooling/.prettier/.prettierrc.cjs --check ./src/",
"test": "jest --config=./.tooling/.jest/jest.config.ts",
"build.commonjs": "tsc -p ./.tsconfig/tsconfig.cjs.json",
"build.esm": "tsc -p ./.tsconfig/tsconfig.esm.json",
"build": "yarn build.commonjs && yarn build.esm"
},
"dependencies": {
"opening_hours": "^3.8.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.1.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}