-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "@maphel/classes",
"version": "0.0.1",
"description": "A utility for generating class names",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"access": "public",
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"prepublish": "yarn build",
"lint": "eslint src/**/*.ts --fix",
"prettier": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"coveralls": "^3.1.1",
"eslint": "8.22.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/maphel/classes.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/maphel/classes/issues"
},
"homepage": "https://github.com/maphel/classes#readme",
"packageManager": "yarn@3.6.3"
}