-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.23 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
{
"name": "reactive-popups",
"version": "0.5.1",
"description": "Easy popup management with React",
"files": [
"dist"
],
"publishConfig": {
"directory": "prepared-package"
},
"main": "./dist/index.js",
"types": "./dist/reactive-popups.d.ts",
"module": "./dist/reactive-popups.esm.js",
"scripts": {
"build": "aqu build",
"start": "aqu watch",
"lint": "aqu lint",
"lint:fix": "aqu lint --fix",
"test": "aqu test",
"test:watch": "pnpm test -- --watch",
"test:coverage": "pnpm test -- --coverage --json --silent --ci --outputFile=\"report.json\"",
"test:log-coverage": "pnpm test -- --coverage --silent --ci --coverageReporters=text",
"prepublishOnly": "aqu build && rimraf ./prepared-package && clean-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fracht/reactive-popups.git"
},
"keywords": [],
"author": "Aleksandras Šukelovič",
"license": "MIT",
"bugs": {
"url": "https://github.com/fracht/reactive-popups/issues"
},
"homepage": "https://github.com/fracht/reactive-popups#readme",
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.0.9",
"@types/shallowequal": "^1.1.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"aqu": "^0.4.3",
"clean-publish": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest-environment-jsdom": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"typescript": "^4.5.4"
},
"dependencies": {
"@sirse-dev/safe-context": "^0.3.0",
"nanoid": "^3.3.6",
"shallowequal": "^1.1.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": ">=16"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.11.0"
}
}