-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.08 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.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
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
{
"name": "@cobuildlab/react-simple-state",
"version": "1.0.0",
"description": "Simple and Lightweight state management for react applications. ",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest --collect-coverage",
"build": "tsc",
"dev": "tsc -w",
"docs": "typedoc --out docs --theme markdown --categorizeByGroup false --exclude src/index.ts --exclude src/__tests__ --readme none --plugin typedoc-plugin-markdown src",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.js src/**/*.ts"
},
"homepage": "https://github.com/cobuildlab/react-simple-state",
"bugs": {
"url": "https://github.com/cobuildlab/react-simple-state/issues"
},
"author": "Angel Lacret",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/react-hooks": "^3.3.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.0.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"react": "17.0.2",
"react-test-renderer": "^16.13.1",
"ts-jest": "^25.5.1",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^4.4.2"
},
"peerDependencies": {
"react": ">=16.13.1"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm run docs && lint-staged",
"pre-push": "npm run build && npm run test"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
}
}