-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "@shm-open/utilities",
"version": "1.13.3",
"description": "common utilities",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run compile",
"compile": "tsc -d",
"start": "npm run compile -- --watch",
"release": "npm test && npm run build && standard-version && git push --follow-tags origin master && npm publish",
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "https://github.com/shm-open/utilities.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@shm-open/eslint-config-bundle": "1.9.13",
"@testing-library/react-hooks": "8.0.1",
"@types/hoist-non-react-statics": "3.3.7",
"@types/jest": "29.5.14",
"@types/react": "18.3.28",
"jest": "29.7.0",
"react": "18.3.1",
"react-test-renderer": "18.3.1",
"standard-version": "9.5.0",
"ts-jest": "29.3.2",
"typescript": "4.8.4"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"hoist-non-react-statics": "^3.3.2"
}
}