-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
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
{
"name": "osrm-text-instructions",
"description": "OSRM Text Instructions",
"url": "https://github.com/Project-OSRM/osrm-text-instructions.js",
"homepage": "http://project-osrm.org",
"version": "0.15.0",
"main": "./index.js",
"types": "./index.d.ts",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Project-OSRM/osrm-text-instructions.js/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/Project-OSRM/osrm-text-instructions.js/"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@transifex/api": "^7.1.0",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"mkdirp": "^3.0.1",
"tape": "^5.9.0",
"typescript": "^6.0.3"
},
"scripts": {
"lint": "eslint eslint.config.js index.js languages.js test/*.js scripts/*.js",
"pretest": "npm run lint",
"test": "tape test/*_test.js",
"transifex": "node scripts/transifex.js",
"type-check": "tsc --noEmit --project tsconfig.example.json",
"validate-types": "tsc --noEmit --project tsconfig.types.json"
}
}