This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@birchill/hikibiki-data",
"version": "7.5.1",
"description": "Download hikibiki data",
"author": "Brian Birtles",
"scripts": {
"build": "rollup -c",
"test": "karma start --single-run",
"prepublishOnly": "pinst --disable && rollup -c",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birchill/hikibiki-data.git"
},
"bugs": {
"url": "https://github.com/birchill/hikibiki-data/issues"
},
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"homepage": "https://github.com/birchill/hikibiki#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@birchill/json-equalish": "^1.1.2",
"@birchill/normal-jp": "^1.4.0",
"idb": "^7.0.0",
"safari-14-idb-fix": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "8.3.2",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/chai-datetime": "0.0.37",
"@types/fetch-mock": "7.3.5",
"@types/mocha": "9.1.1",
"@types/node": "17.0.23",
"@types/sinon": "10.0.11",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-datetime": "1.8.0",
"fetch-mock": "9.11.0",
"husky": "8.0.1",
"karma": "6.3.20",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.1",
"karma-firefox-launcher": "2.1.2",
"karma-mocha": "2.0.1",
"karma-webpack": "5.0.0",
"lint-staged": "12.4.2",
"mocha": "10.0.0",
"pinst": "3.0.0",
"prettier": "2.6.2",
"process": "0.11.10",
"rollup": "2.74.1",
"sinon": "14.0.0",
"standard-version": "9.5.0",
"ts-loader": "9.3.0",
"typescript": "4.7.2",
"util": "0.12.4",
"webpack": "5.72.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
}
}