-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
28 lines (28 loc) · 856 Bytes
/
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
{
"name": "open-location-code-typescript",
"version": "1.5.0",
"description": "Open Location Code Typescript implementation",
"repository": {
"type": "git",
"url": "git+https://github.com/tspoke/typescript-open-location-code.git"
},
"main": "./dist/open-location-code.js",
"types": "./dist/open-location-code.d.ts",
"author": "Thibaud Giovannetti",
"scripts": {
"build": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json && ./node_modules/.bin/tsc -p tsconfig.json",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"devDependencies": {
"@types/chai": "4.2.8",
"@types/mocha": "7.0.1",
"@types/node": "13.7.0",
"chai": "4.2.0",
"mocha": "7.0.1",
"reflect-metadata": "0.1.13",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"typescript": "3.7.5"
},
"private": false
}