-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.63 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
49
{
"name": "tailwind-ie-variant",
"version": "0.0.0-dev",
"description": "Tailwind CSS plugin to add variants (css hacks) for IE10+",
"main": "index.js",
"license": "MIT",
"keywords": [
"tailwindcss-plugin",
"tailwindcss",
"tailwind-plugin"
],
"bugs": {
"url": "https://github.com/unlight/tailwind-ie-variant/issues"
},
"homepage": "https://github.com/unlight/tailwind-ie-variant#readme",
"scripts": {
"test": "npm run test:r",
"test:r": "mocha --timeout 8s src/**/*.spec.js",
"test:w": "mocha --watch-extensions js --watch --timeout 8s src/**/*.spec.js",
"test:d": "node --inspect-brk node_modules/mocha/bin/_mocha --no-timeouts --watch-extensions ts --watch src/**/*.spec.js",
"build": "sh Taskfile build",
"tailwind:build": "tailwind build styles.css -o ~output.css",
"postcss:build": "postcss styles.css -o ~output.css",
"postcss:w": "watchexec -w . \"npm run postcss:build\"",
"dev:d": "node --inspect-brk node_modules/tailwindcss/lib/cli.js build styles.css -o ~output.css"
},
"peerDependencies": {
"postcss": ">=8"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"autoprefixer": "^10.4.1",
"common-tags": "^1.8.2",
"conventional-changelog-conventionalcommits": "^4.6.3",
"expect": "^27.4.2",
"mocha": "^9.1.3",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"tailwindcss": "^3.0.8",
"watchexec-bin": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/tailwind-ie-variant.git"
}
}