-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
{
"name": "state-observable-class",
"version": "1.0.0",
"description": "State observable class for React",
"repository": {
"type": "git",
"url": "git+https://github.com/Rychu-Pawel/StateObservableClass.git"
},
"keywords": [
"React",
"Class",
"State",
"Observer",
"Observable",
"Object",
"Hook"
],
"author": "Rychu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rychu-Pawel/StateObservableClass/issues"
},
"homepage": "https://github.com/Rychu-Pawel/StateObservableClass#readme",
"main": "dist/src/index.js",
"type": "module",
"files": [
"dist/src"
],
"scripts": {
"test": "yarn build && ava",
"test:ci": "ava --tap",
"eslint": "eslint src test",
"eslint:ci": "yarn eslint",
"clean": "del-cli --force dist",
"build": "npm run clean && tsc",
"build:ci": "npm run build"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
}
},
"devDependencies": {
"@testing-library/react": "^15.0.5",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/node20": "^20",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"ava": "^6.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"global-jsdom": "^24.0.0",
"jsdom": "^24.0.0",
"react-dom": "^18.3.1",
"typescript": "^5.0.4"
},
"dependencies": {
"react": "^18.0.0"
},
"ava": {
"files": [
"dist/test/**/*.spec.js"
]
}
}