-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
54
55
56
57
58
59
60
61
{
"name": "provinces-ca",
"version": "1.0.1",
"description": "List of CA provinces and territories.",
"keywords": [
"canada",
"ca",
"provinces",
"territories",
"array",
"abbreviation",
"abbreviations"
],
"author": {
"name": "Justin Lettau",
"email": "me@justinlettau.com",
"url": "https://justinlettau.com"
},
"license": "MIT",
"homepage": "https://github.com/justinlettau/provinces-ca",
"repository": {
"type": "git",
"url": "https://github.com/justinlettau/provinces-ca"
},
"bugs": {
"url": "https://github.com/justinlettau/provinces-ca/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"prebuild": "del-cli dist",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"del-cli": "^3.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
}
}