-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.68 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": "object-storage-factory",
"version": "1.0.0",
"description": "Object storage factory implemented with the same interface as browser's local storage.",
"license": "MIT",
"author": "Paweł Wojtasiński <pawel.wojtasinski.1995@gmail.com>",
"repository": "git@github.com:playerony/object-storage-factory.git",
"main": "dist/index.js",
"scripts": {
"build": "npx rimraf dist && npx rimraf tsconfig.tsbuildinfo && tsc",
"build:docs": "bash ./scripts/build-docs.sh",
"check": "yarn lint && yarn typecheck && yarn format:check && yarn test && yarn commitlint && yarn build",
"commitlint": "commitlint -- --from=main",
"dev": "yarn build --watch --preserveWatchOutput",
"docs:api-documenter": "yarn api-documenter markdown -i temp -o docs",
"docs:api-extractor": "yarn api-extractor run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"gcb": "bash ./scripts/git-create-branch.sh",
"gcmwp": "bash ./scripts/git-checkout-main-with-pull.sh",
"gpc": "bash ./scripts/git-push-changes.sh",
"lint": "eslint src --ext js,ts",
"lint:fix": "yarn lint --fix",
"open:coverage": "open ./coverage/lcov-report/index.html",
"prepare": "husky install",
"reinstall-node-modules": "bash ./scripts/reinstall-node-modules.sh",
"remove-node-modules": "bash ./scripts/remove-node-modules.sh",
"test": "yarn build && jest",
"test:ci": "yarn test --ci --coverage --forceExit",
"test:coverage": "yarn test --collectCoverage",
"test:update-snapshot": "yarn test --updateSnapshot",
"test:watch": "yarn test --watch",
"typecheck": "tsc --noEmit"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/preset-env": "^7.14.9",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@microsoft/api-documenter": "^7.13.34",
"@microsoft/api-extractor": "^7.18.4",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"prettier-package-json": "^2.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged && npm test"
}
},
"volta": {
"node": "14.17.4",
"yarn": "1.22.11"
},
"keywords": [
"object",
"storage",
"factory",
"wrapper",
"interface",
"storage-interface",
"javascript",
"typescript",
"tests"
]
}