-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "@slicknode/stylemapper",
"version": "0.1.5",
"description": "Flexible utility to create styled and type-safe React components",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"prepare": "npm run clean && npm run build",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src && prettier --check src",
"format": "prettier --write src/ package.json",
"version": "npm version"
},
"author": "Slicknode LLC",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/jest": "^28.1.6",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "8.4.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-watch-typeahead": "^2.0.0",
"prettier": "^2.5.1",
"react": "~18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"directories": {
"lib": "./dist"
},
"files": [
"README.md",
"LICENSE",
"dist"
],
"keywords": [
"react",
"css",
"style",
"classname",
"classnames",
"utility",
"typescript",
"tailwindcss"
],
"repository": "slicknode/stylemapper",
"peerDependencies": {
"react": "^16 || ^17 || ^18"
},
"engines": {
"node": ">=12"
}
}