-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "paystring-validator",
"version": "1.0.0",
"description": "A simple app that validates PayString requests.",
"main": "index.js",
"scripts": {
"build:css": "tailwind build src/assets/css/style.css -o dist/assets/css/style.css",
"cachebust": "cachebust"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rswarthout/paystring-validator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rswarthout/paystring-validator/issues"
},
"homepage": "https://github.com/rswarthout/paystring-validator#readme",
"dependencies": {
"@sparkbox/cachebust": "^0.3.0",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"@tailwindcss/ui": "^0.3.1",
"autoprefixer": "^10.0.2",
"postcss": "^8.2.10",
"tailwindcss": "^2.0.1"
},
"devDependencies": {},
"cachebust": {
"source": [
"dist/assets/css/style.css"
],
"target": [
"dist/*.php",
"dist/**/*.html"
]
}
}