-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 996 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
{
"name": "@tictactrip/gp-uid",
"version": "2.1.1",
"description": "Ground place unique identifier generator.",
"author": "Dimitri DO BAIRRO <dimitri.dobairro@tictactrip.eu>",
"main": "dist/index.js",
"dependencies": {
"ngeohash": "0.6.3",
"stopword": "0.1.13"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/ngeohash": "0.6.2",
"@types/node": "10.14.21",
"jest": "24.9.0",
"prettier": "1.18.2",
"ts-jest": "24.1.0",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.6.4"
},
"scripts": {
"clean": "rm -rf coverage dist tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project 'tsconfig.json'",
"lint:fix": "tslint --fix -t stylish --project 'tsconfig.json'",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublish": "yarn build"
}
}