-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "openrouteservice-js",
"version": "0.4.1",
"description": "A Javascript client for openrouteservice services.",
"author": "Openrouteservice Community",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/ors-js-client.umd.cjs",
"module": "./dist/ors-js-client.js",
"files": [
"lib/",
"dist/",
"CHANGELOG.md"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"commit": "git-cz",
"release": "standard-version",
"pretest:ci": "rimraf .nyc_output coverage",
"test": "cypress open",
"test:ci": "CYPRESS_COVERAGE=true start-server-and-test 'npx vite --host' http://localhost:5173/ 'cypress run -q && cypress run --component -q'",
"test:e2e": "cypress open --e2e",
"test:e2e:ci": "start-server-and-test dev http://localhost:5173/ 'cypress run -q'",
"test:unit": "cypress open --component",
"test:unit:ci": "start-server-and-test dev http://localhost:5173/ 'cypress run --component -q'",
"lint": "eslint . --fix"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.40",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"babel-plugin-istanbul": "^7.0.0",
"commitizen": "^4.3.0",
"cypress": "^13.13.0",
"cypress-vite": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.6.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.8.0",
"leaflet": "^1.9.4",
"nyc": "^17.0.0",
"standard-version": "^9.5.0",
"start-server-and-test": "^2.0.4",
"terser": "^5.31.1",
"vite": "^5.3.3",
"vite-plugin-istanbul": "^6.0.2",
"vue": "^3.4.31"
},
"repository": {
"type": "git",
"url": "git://github.com/GIScience/openrouteservice-js.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": "**/__tests__/*"
}
}