-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 KB
/
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
35
36
37
38
39
40
41
42
{
"name": "tailwind-plugin",
"description": "",
"private": true,
"keywords": [
"tailwindcss",
"typography",
"baseline"
],
"workspaces": [
"plugin",
"example"
],
"author": "Apostolos Christodoulou <[email protected]> (@a7sc11u)",
"main": "index.js",
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"develop": "npm-run-all -p plugin example",
"plugin": "lerna exec --scope tailwind-compositor -- yarn develop",
"build": "lerna exec --scope tailwind-compositor -- yarn build",
"example": "lerna exec --scope example -- yarn run develop",
"tdd": "jest --u --watch --onlyChanged --watchman --forceExit --detectOpenHandles --notify --notifyMode=failure",
"release": "yarn test && yarn build && lerna publish --no-git-reset",
"test": "jest --forceExit --detectOpenHandles --notify --notifyMode=failure"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^12.7.5",
"benchmark": "^2.1.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-emotion": "^10.0.32",
"jest-matcher-css": "^1.1.0",
"jshint": "^2.10.2",
"lerna": "^3.20.2",
"npm-run-all": "^4.1.5",
"prun": "^1.0.1",
"typescript": "^3.9.3",
"ts-jest": "^26.0.0"
}
}