-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 KB
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
{
"name": "storestack",
"version": "1.2.8",
"description": "Simple store solution",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Alexandre Moreau-Lemay <alexandre@unless.com> (unless.com)",
"license": "MIT",
"type": "module",
"dependencies": {
"clone-deep": "^4.0.1",
"nanoid": "^4.0.0"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --config jestconfig.json --coverage",
"prepare": "husky install && yarn build",
"prepublishOnly": "yarn test && yarn eslint",
"preversion": "yarn eslint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"publish": "yarn version --patch && git add -A && git commit -m \"Updated version for publising\" && git push && npm publish"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.6",
"@swc/jest": "^0.2.23",
"@types/clone-deep": "^4.0.1",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"core-js": "^3.25.5",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": ">=6",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tsconfig-to-swcconfig": "^2.0.1",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amoreaulemay/storestack"
},
"keywords": [
"state management",
"store",
"multi-store"
],
"bugs": {
"url": "https://github.com/amoreaulemay/storestack/issues"
},
"files": [
"lib/**/*"
],
"homepage": "https://github.com/amoreaulemay/storestack#readme",
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}