-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.26 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
{
"name": "fluxible-js",
"version": "6.1.5",
"description": "Smaller, faster, better state management system that supports asynchronicity and state persistence out of the box.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"__tests__/*",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"test": "npm run build && jest __tests__/unit/* --env=node --coverage",
"build": "rm -rf lib && mkdir lib && npm run lint && tsc",
"eslint": "eslint . --ext .js,.ts --fix",
"prettier": "prettier \"*.js|*.ts\" \"src/**/*.js|src/**/*.ts\" --write",
"lint": "npm run prettier && npm run eslint",
"prepare": "husky install",
"prepublish": "yarn test"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
],
"__tests__/**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aprilmintacpineda/fluxible-js.git"
},
"keywords": [
"state-management",
"state-pattern",
"asynchronous-state-management",
"synchronous-state-management"
],
"author": "April Mintac Pineda",
"license": "MIT",
"bugs": {
"url": "https://github.com/aprilmintacpineda/fluxible-js/issues"
},
"homepage": "https://github.com/aprilmintacpineda/fluxible-js#readme",
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/eslint-parser": "^7.18.9",
"@babel/node": "^7.18.10",
"@babel/preset-env": "^7.19.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@typescript-eslint/typescript-estree": "^5.36.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-minify": "^0.5.2",
"eslint": "^8.23.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"dependencies": {
"typescript": "^4.8.2"
}
}