forked from what3words/w3w-node-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"private": true,
"name": "@what3words/api",
"version": "3.3.0",
"description": "what3words javascript api",
"engines": {
"node": ">=8"
},
"keywords": [
"what3words",
"api",
"library",
"utility",
"geo",
"maps",
"geolocation"
],
"scripts": {
"build": "npm run clear && npm run create-version && npm run build-js && npm run build-node && npm run build-script",
"build-js": "tsc --target es2015 --module es2015 --outDir dist/es2015",
"build-node": "tsc --target es5 --module umd --outDir dist/umd",
"build-script": "node ./scripts/index.js",
"create-version": "node ./scripts/version.js",
"clear": "node ./scripts/clear.js",
"publish": "npm run build && npm publish dist",
"run_test": "jest",
"test": "if [ \"$TRAVIS_NODE_VERSION\" -ge 12 ] ; then npm run run_test ; fi;"
},
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.10",
"@types/node": "14.11.2",
"@typescript-eslint/eslint-plugin": "1.3.0",
"@typescript-eslint/parser": "1.3.0",
"ajv": "5.5.2",
"babel-jest": "^26.3.0",
"eslint": "5.13.0",
"eslint-plugin-prettier": "3.0.1",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"prettier": "1.16.4",
"prettier-eslint": "8.8.2",
"rimraf": "2.6.3",
"typescript": "4.0.3"
}
}