-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.98 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "create-tailwind-plugin",
"version": "1.0.0",
"description": "Create Tailwind CSS plugin and publish on npm with ease",
"types": "build/types/types.d.ts",
"bin": {
"create-tailwind-plugin": "bin/create-tailwind-plugin"
},
"scripts": {
"format": "prettier --write **/*.{ts,tsx,json,md} !CHANGELOG.md",
"lint": "tslint -p .",
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "if [ -e ./src/templates ]; then cp -a ./src/templates ./build/; fi",
"build": "npm run format && npm run lint && npm run clean-build && npm run compile && npm run copy-templates",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"prerelease": "npm run test && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin main && npm publish && npm run clean-build"
},
"standard-version": {
"tagPrefix": ""
},
"repository": {
"type": "git",
"url": "https://github.com/Landish/create-tailwind-plugin/"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"@types/boxen": "^3.0.1",
"gluegun": "latest"
},
"keywords": [
"create-tailwind-plugin",
"tailwind-css-plugin",
"tailwind-css",
"tailwind",
"plugin",
"gluegun",
"cli"
],
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"jest": "^24.1.0",
"prettier": "^1.12.1",
"standard-version": "^9.1.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"build/test.js",
"templates/test.js",
"fake-plugin-name/test.js"
]
}
}