-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 1.89 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
72
73
74
75
76
77
78
79
80
81
82
{
"private": false,
"name": "@what3words/api",
"version": "5.4.0",
"description": "what3words JavaScript API",
"homepage": "https://github.com/what3words/w3w-node-wrapper#readme",
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest dev",
"coverage": "vitest run --coverage",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"precoverage": "rm -rf coverage",
"precompile": "npm rum clean; scripts/languages",
"posttest": "npm run lint"
},
"peerDependencies": {
"axios": ">=1",
"cross-fetch": ">=3"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
},
"cross-fetch": {
"optional": true
}
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@testing-library/react": "^12.1.3",
"@types/chance": "^1.1.3",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.0.0",
"@types/node": "^18.19.31",
"@types/react": "^17.0.39",
"@types/sinon": "^10.0.6",
"@types/superagent": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@vitest/coverage-v8": "^1.5.0",
"chance": "^1.1.8",
"eslint-plugin-prettier": "^4.0.0",
"gts": "^3.1.0",
"jsdom": "^19.0.0",
"nock": "^13.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"superagent": "^8.0.8",
"ts-node": "^10.4.0",
"typescript": "^5.0.0",
"vite-plugin-commonjs": "^0.10.1",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=18"
},
"author": {
"name": "what3words"
},
"bugs": {
"url": "https://github.com/what3words/w3w-node-wrapper/issues"
},
"keywords": [
"what3words",
"api",
"library",
"utility",
"geo",
"maps",
"geolocation"
]
}