-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
41
{
"name": "capitalize-pt-br",
"version": "0.6.0",
"description": "A library for capitalizing each word's first letter of a given string",
"main": "dist/capitalize-pt-br.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"test": "jest --coverage",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ranpa/capitalize-pt-br.git"
},
"keywords": [
"capitalize",
"pt-br",
"primeira",
"letra",
"maiúscula",
"formatar",
"palavras"
],
"author": "Nélson Rangel (@ranpa)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ranpa/capitalize-pt-br/issues"
},
"homepage": "https://github.com/ranpa/capitalize-pt-br#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"cross-env": "^5.1.6",
"jest-cli": "^25.2.3",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.2"
}
}