-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 931 Bytes
/
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
{
"name": "tailwind-safe-container",
"version": "1.0.0",
"description": "Adds support for the 'safe' and 'unsafe' overflow alignment keywords in Tailwind",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/LorenzoBloedow/tailwind-safe-container.git"
},
"scripts": {
"build": "jsmin -l 3 -o dist/index.js src/index.js",
"test:startServer": "nodemon ./test/server/index.js",
"test:startTailwind": "npx tailwindcss -i ./test/server/public/input/styles.css -o ./test/server/public/output/styles.css --watch -c test/server/tailwind.config.js"
},
"keywords": [
"tailwind",
"plugin",
"safe",
"overflow",
"alignment",
"unsafe"
],
"author": "Lorenzo Bloedow",
"license": "MIT",
"devDependencies": {
"express": "^4.18.2",
"jsmin": "^1.0.1",
"nodemon": "^2.0.22",
"tailwindcss": "^3.3.2"
}
}