-
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) · 992 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 992 Bytes
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": {
"@transifex/api": "^7.1.0",
"@types/node": "^20.0.0",
"eslint": "^8.57.0",
"mkdirp": "^0.5.1",
"request": "^2.79.0",
"tape": "^4.9.2",
"typescript": "^5.0.0"
},
"scripts": {
"lint": "eslint *.js test/*.js scripts/*.js",
"pretest": "npm run lint",
"test": "tape test/*_test.js",
"transifex": "node scripts/transifex.js",
"type-check": "tsc --noEmit example.ts",
"validate-types": "tsc --noEmit index.d.ts"
}
}