-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
119 lines (119 loc) · 3.75 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "indexeddb-fs",
"version": "2.1.5",
"description": "An 'fs' kind of library dedicated to the browser",
"license": "MIT",
"author": "Paweł Wojtasiński",
"homepage": "https://github.com/playerony/indexeddb-fs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/playerony/indexeddb-fs.git"
},
"bugs": {
"url": "https://github.com/playerony/indexeddb-fs/issues"
},
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"files": [
"/dist"
],
"scripts": {
"build": "yarn build:clean && yarn build:dist",
"build:clean": "rimraf dist",
"build:dist": "rollup -c",
"check": "yarn lint && yarn typecheck && yarn test",
"check:all": "concurrently \"yarn lint\" \"yarn typecheck\" \"yarn format:check\" \"yarn test\" \"yarn build\"",
"commitlint": "commitlint -- --from=main",
"format": "yarn prettier --write",
"format:check": "yarn prettier --check",
"gcb": "bash ./scripts/git-create-branch.sh",
"gcdwp": "bash ./scripts/git-checkout-develop-with-pull.sh",
"gpc": "bash ./scripts/git-push-changes.sh",
"grlc": "bash ./scripts/git-reset-local-changes.sh",
"lint": "eslint \"./lib/**/*\"",
"lint:fix": "yarn lint -- --fix",
"open:coverage": "open ./coverage/lcov-report/index.html",
"prepare": "husky install",
"prettier": "prettier \"**/*.+(js|ts|json)\"",
"reinstall-node-modules": "bash ./scripts/reinstall-node-modules.sh",
"rlb": "bash ./scripts/remove-local-branches.sh",
"test": "jest --detectOpenHandles --verbose",
"test:ci": "jest --ci --detectOpenHandles --coverage --forceExit",
"test:coverage": "jest --detectOpenHandles --collectCoverage",
"test:update-snapshot": "jest --detectOpenHandles --verbose --updateSnapshot",
"test:watch": "jest --detectOpenHandles --verbose --watch",
"typecheck": "tsc --noEmit"
},
"types": "dist/index.d.ts",
"dependencies": {
"jsonschema": "^1.4.1"
},
"devDependencies": {
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "29.5.0",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"concurrently": "^7.6.0",
"eslint": "8.36.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-folders": "^1.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"fake-indexeddb": "4.0.1",
"husky": "^8.0.3",
"jest": "29.5.0",
"jest-module-name-mapper": "0.1.5",
"lint-staged": "13.2.0",
"path": "^0.12.7",
"prettier": "2.8.7",
"prettier-package-json": "2.8.0",
"rimraf": "4.4.1",
"rollup": "3.20.2",
"rollup-plugin-polyfill-node": "0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.34.1",
"ts-jest": "29.0.5",
"tslib": "2.5.0",
"ttypescript": "1.5.15",
"typescript": "4.9.5",
"typescript-transform-paths": "3.4.6"
},
"keywords": [
"Paweł",
"Wojtasiński",
"browser",
"browser-fs",
"commands",
"file",
"fs",
"fs-browser",
"fs-web",
"indexed-db",
"indexeddb",
"javascript",
"manager",
"playerony",
"terminal",
"typescript",
"web-fs"
],
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged && npm test"
}
},
"packageManager": "[email protected]"
}