-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 961 Bytes
/
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
{
"name": "plop-prettier",
"version": "3.0.0",
"description": "Use prettier to format plop templates",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alsiola/plop-prettier.git"
},
"keywords": [
"plop",
"prettier"
],
"author": "Alex Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/alsiola/plop-prettier/issues"
},
"homepage": "https://github.com/alsiola/plop-prettier#readme",
"devDependencies": {
"@types/node": "^8.10.54",
"@types/prettier": "^1.18.3",
"prettier": "^1.17.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"@types/prettier": "^1.18.3",
"prettier": "^1.17.0"
}
}