tailwindcss-plugin-jest-exa.../package.json

28 lines
575 B
JSON
Raw Normal View History

2019-04-11 12:14:27 +00:00
{
"name": "tailwindcss-plugin-jest-example",
"version": "0.1.0",
"description": "An example showing how to write tests for for Tailwind CSS plugins.",
"main": "index.js",
"scripts": {
"test": "jest"
},
2019-04-23 20:37:39 +00:00
"keywords": [
"tailwindcss",
"jest"
],
2019-04-11 12:14:27 +00:00
"author": {
"name": "Oliver Davies",
2019-04-23 20:37:39 +00:00
"url": "https://www.oliverdavies.uk"
2019-04-11 12:14:27 +00:00
},
"license": "MIT",
"devDependencies": {
"jest": "^24.7.1",
"jest-matcher-css": "^1.0.3"
},
"dependencies": {
"lodash": "^4.17.11",
"postcss": "^7.0.14",
2019-04-23 20:37:39 +00:00
"tailwindcss": "^1.0.0-beta.5"
2019-04-11 12:14:27 +00:00
}
}