-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 KB
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
{
"name": "static-google-map-ts",
"version": "0.0.9",
"description": "A strongly typed URL builder for Google Maps Static.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"generate-barrels": "barrelsby -c barrelsby.json",
"lint": "eslint ./src --ext .ts",
"prebuild": "npm run generate-barrels && npm run lint",
"build": "tsc",
"test": "jasmine --config=jasmine.json --random=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tipstrade/static-google-map-ts.git"
},
"author": "John Bayly",
"license": "MIT",
"bugs": {
"url": "https://github.com/tipstrade/static-google-map-ts/issues"
},
"homepage": "https://github.com/tipstrade/static-google-map-ts#readme",
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"barrelsby": "^2.3.4",
"dotenv": "^16.0.1",
"eslint": "^8.14.0",
"eslint-plugin-import": "^2.26.0",
"jasmine": "^4.1.0",
"jasmine-terminal-reporter": "^1.0.3",
"jasmine-ts": "^0.4.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}