-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "@vannizhang/wayback-core",
"version": "1.0.8",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest ./src --config jest.config.js --bail --findRelatedTests --passWithNoTests",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"lint": "eslint src --ext .tsx,.ts --cache --fix",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": [
"prettier --write",
"eslint src --fix",
"jest --config jest.config.js --bail --findRelatedTests --passWithNoTests"
]
},
"author": "ArcGIS Living Atlas of the World",
"license": "ISC",
"keywords": [
"Wayback",
"World Imagery Wayback",
"Living Atlas of the World",
"ESRI"
],
"bugs": {
"url": "https://github.com/vannizhang/wayback-core/issues"
},
"homepage": "https://github.com/vannizhang/wayback-core",
"repository": {
"type": "git",
"url": "git+https://github.com/vannizhang/wayback-core.git"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}