-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"name": "tiny-redux",
"version": "1.0.0",
"description": "A redux like state management library.",
"main": "index.js",
"scripts": {
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint --fix src/**/*.ts",
"lint-check": "eslint src/**/*.ts",
"pre-commit": "prettier --write **/*.ts && eslint src/**/*.ts && jest",
"test": "jest",
"debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShZh-Playground/tiny-redux.git"
},
"author": "sh-zh-7",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/ShZh-Playground/tiny-redux/issues"
},
"homepage": "https://github.com/ShZh-Playground/tiny-redux#readme",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/node": "^14.14.31",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}