-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "@gojob/google-place",
"version": "1.8.0",
"license": "MIT",
"description": "A small node module to use the Google Place API written in typescript",
"engines": {
"node": ">= 8.0.0"
},
"volta": {
"node": "8.17.0",
"yarn": "1.22.19"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/gojob-1337/node-google-place"
},
"pre-commit": [
"lint"
],
"scripts": {
"build": "tsc",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json -t verbose",
"lint:watch": "chokidar '**/*.ts' -i 'node_modules' -c 'yarn lint' --initial --verbose",
"start": "echo 'Not runable' && exit 1",
"test": "jest --forceExit --silent=false --config=jest.json",
"coverage": "yarn test --coverage"
},
"dependencies": {
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"query-string": "^5.1.0"
},
"devDependencies": {
"@gojob/tslint-config": "^0.0.3",
"@types/jest": "^22.2.0",
"@types/node": "^9.4.7",
"@types/query-string": "^5.1.0",
"@types/request-promise-native": "^1.0.14",
"chokidar-cli": "^1.2.0",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"jest": "^22.4.2",
"prettier": "^1.11.1",
"ts-jest": "^22.4.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.7.2"
}
}