-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1 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": "capitalize-sentence",
"version": "0.1.5",
"description": "Capitalize each sentence",
"main": "index.es5.js",
"jsnext:main": "index.js",
"files": [
"index.js",
"index.es5.js"
],
"scripts": {
"test": "ava --require babel-register",
"prepublish": "babel index.js --out-file index.es5.js",
"postpublish": "rimraf index.es5.js && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrepolischuk/capitalize-sentence.git"
},
"keywords": [
"capitalize",
"each",
"sentence",
"text",
"textr"
],
"author": "Andrey Polischuk <me@andrepolischuk.com> (https://andrepolischuk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrepolischuk/capitalize-sentence/issues"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"rimraf": "^2.5.4"
}
}