-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.53 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
{
"name": "tailwind-float-label",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Tailwind plugin to add floating label, control with float label components",
"main": "index.js",
"keywords": [
"floating-label",
"float-label",
"float-label-pattern",
"tailwindcss-plugin",
"tailwind-plugin",
"tailwind-component",
"tailwind-components"
],
"scripts": {
"dev": "run-p dev:*",
"dev:server": "cd docs && lite-server",
"dev:experiments": "watchexec -w src \"sh Taskfile dev_experiments\"",
"dev_experiments": "sh Taskfile dev_experiments",
"postcss": "node -r ts-node/register/transpile-only node_modules/postcss-cli/index.js src/tailwind.css -o experiments/tailwind.build.css",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "npm run eslint -- --fix",
"build": "sh Taskfile build",
"mocha": "node node_modules/mocha/bin/_mocha",
"test:r": "mocha -r ts-node/register/transpile-only src/**/*.spec.ts",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/testing/**\" npm run test:r -- --no-timeouts",
"test:w": "mocha -r ts-node/register/transpile-only --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"test:d": "node --inspect -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"test:b": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/tailwind-float-label.git"
},
"bugs": {
"url": "https://github.com/unlight/tailwind-float-label/issues"
},
"homepage": "https://github.com/unlight/tailwind-float-label#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"autoprefixer": "^10.4.2",
"c8": "^7.11.0",
"common-tags": "^1.8.2",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.11.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-etc": "2.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-regexp": "^1.5.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.12.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"eslint-plugin-total-functions": "^5.0.1",
"eslint-plugin-unicorn": "^41.0.0",
"eslint-plugin-wix-editor": "^3.3.0",
"lite-server": "^2.6.1",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.8",
"postcss-cli": "^9.1.0",
"precise-commits": "^1.0.2",
"prettier": "^2.5.1",
"request": "^2.88.2",
"semantic-release": "^19.0.2",
"simplytyped": "^3.3.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"watchexec-bin": "^1.0.0"
}
}