-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "@appcominteractive/writeme",
"version": "1.0.4",
"description": "This is an interactive generator for creating readme files according to the appcom readme styleguide",
"bin": {
"writeme": "dist/index.js"
},
"scripts": {
"prebuild": "npm run lint",
"build": "babel src --copy-files --out-dir dist",
"deploy": "git flow release start $npm_package_version && git flow release finish -m \"$npm_package_version\" $npm_package_version && npm publish --access public && git push origin master --tags",
"prelink": "npm run build",
"lint": "eslint --max-warnings=0 .",
"patch": "npm --no-git-tag-version version patch",
"postpatch": "git add package.json && git commit -m \"Bump version patch number\" package*"
},
"keywords": [
"readme",
"generator",
"appcom",
"styleguide"
],
"author": "Stefan Neidig <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/appcom-interactive/writeme.git"
},
"license": "ISC",
"dependencies": {
"commander": "^2.20.0",
"inquirer": "^6.4.1",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"eslint-config-appcom": "^1.0.9"
}
}