-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "twcnc",
"version": "1.0.1",
"description": "A tiny utility for constructing `className` strings using Tailwind CSS class & pseudo-class modifier.",
"main": "lib/twcnc.js",
"types": "lib/twcnc.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "npm run build:js && npm run build:types && npm run format:scripts",
"build:js": "babel src --out-dir lib --extensions .ts",
"build:types": "tsc --emitDeclarationOnly",
"format": "prettier --write .",
"format:scripts": "prettier --write **/*.{js,ts}",
"lint": "eslint --fix .",
"bench": "npm run build && npm run bench:only",
"bench:only": "babel-node -x .ts -- bench"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kiranmurmu/twcnc.git"
},
"keywords": [
"twcnc",
"classname",
"tailwind",
"tailwindcss",
"clsx",
"class"
],
"author": {
"name": "Kiran Murmu",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kiranmurmu/twcnc/issues"
},
"homepage": "https://github.com/kiranmurmu/twcnc#readme",
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.12",
"@babel/node": "7.16.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@types/benchmark": "2.1.1",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"babel-jest": "27.4.6",
"benchmark": "2.1.4",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest-cli": "27.4.7",
"prettier": "2.5.1",
"typescript": "4.5.4"
}
}