-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
100 lines (100 loc) · 3.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "tailwindcss-classnames",
"version": "3.1.0",
"description": "Functional typed classnames for TailwindCSS",
"author": "Christian Alfoni <[email protected]>",
"contributors": [
"Muhammad Sammy <[email protected]>",
"Christian Alfoni <[email protected]>"
],
"license": "MIT",
"repository": "git+https://github.com/muhammadsammy/tailwindcss-classnames.git",
"main": "lib/index.js",
"bin": {
"tailwindcss-classnames": "lib/cli/index.js"
},
"module": "es/index.js",
"browser": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:umd",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"build:umd": "npm run build:es && rollup --config && dts-bundle --name dist/bundle --main es --outputAsModuleFolder",
"clean": "rimraf dist es lib coverage tailwindcss-classnames.ts tailwind.config.js",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.{js,ts}\" && npm run typecheck",
"check-formatting": "prettier \"**/*.{md,js,jsx,json,ts,tsx}\" --check",
"fix-formatting": "prettier \"**/*.{md,js,jsx,json,ts,tsx}\" --write",
"test": "jest --env=jsdom --coverage --passWithNoTests",
"test:watch": "jest --env=jsdom --watch --updateSnapshot",
"prepublishOnly": "npm run build",
"run-cli": "npm run build:lib && node lib/cli/index.js",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__ {lib,es}/**/*.{spec,test}.{js,d.ts,js.map}",
"posttest": "npm run typecheck && npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"release": "standard-version",
"releaseAs": "standard-version --release-as",
"pregenerate": "npm run clean && npm run build:lib",
"generate": "tailwindcss init --full && node lib/cli/index.js -i tailwind.config.js -o src/index.ts",
"postgenerate": "npm run clean && prettier src/index.ts --write",
"preupdateConfig": "npm run clean",
"updateConfig": "tailwindcss init --full && node scripts/updateDefaultConfig.js",
"postupdateConfig": "npm run clean && prettier src/cli/lib/defaultTailwindConfig.ts --write"
},
"keywords": [
"typescript",
"tailwindcss",
"tailwind",
"classnames"
],
"files": [
"lib",
"es",
"dist"
],
"dependencies": {
"@colors/colors": "^1.5.0",
"clsx": "^1.1.1",
"commander": "^7.0.0",
"inquirer": "^8.1.1",
"lodash": "^4.17.15",
"tslib": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^11.0.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"autoprefixer": "^10.4.14",
"dts-bundle": "^0.7.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"pascal-case": "^3.1.2",
"postcss": "^8.4.23",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.37.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.2",
"standard-version": "^9.1.0",
"tailwindcss": "3.1.8",
"ts-jest": "~26.5.1",
"typescript": "^4.3.4"
}
}