-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 913 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
{
"name": "@prepair/capitalize",
"version": "1.1.0",
"description": "Capitalize a string.",
"main": "index.js",
"scripts": {
"test": "node test.js",
"lint": "semistandard",
"precommit": "npm run lint",
"prepush": "npm run test",
"release": "git checkout master && git pull origin master && standard-version && git push --follow-tags origin master && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prepair/capitalize.git"
},
"keywords": [
"string",
"capitalize",
"utility"
],
"author": "Szabolcs Kurdi <szabolcs.kurdi@gmail.com> (https://github.com/szkrd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prepair/capitalize/issues"
},
"homepage": "https://github.com/prepair/capitalize#readme",
"devDependencies": {
"semistandard": "9.2.1",
"standard-version": "4.0.0"
}
}