-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 853 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 853 Bytes
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
{
"name": "rock-utils",
"version": "1.0.15",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest src/**/*.ts",
"build": "rimraf lib && tsc -d",
"docs": "npx typedoc src/utils/*.ts",
"lint": "eslint src/utils/*.ts"
},
"author": "gaollard",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^27.0.3",
"@types/react": "^16.14.0",
"@typescript-eslint/parser": "^5.40.1",
"babel-jest": "^27.4.4",
"eslint": "^8.22.0",
"jest": "^27.4.4",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typedoc": "^0.23.17"
},
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
}
}