mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
25 lines
552 B
JSON
25 lines
552 B
JSON
{
|
|
"name": "@tailwindcss/integrations-parcel",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"build": "parcel build ./src/index.html --no-cache",
|
|
"dev": "parcel watch ./src/index.html --no-cache",
|
|
"test": "jest --runInBand --forceExit"
|
|
},
|
|
"jest": {
|
|
"testTimeout": 10000,
|
|
"displayName": "parcel",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/../../jest/customMatchers.js"
|
|
],
|
|
"transform": {
|
|
"\\.js$": "@swc/jest",
|
|
"\\.ts$": "@swc/jest"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"parcel": "^2.8.3"
|
|
}
|
|
}
|