-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
32 lines (32 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
{
"name": "words-pt",
"version": "1.0.24",
"description": "The list of all the words in Portuguese, including all possible combinations and variations (masculine, feminine, plural, singular, verbal conjugations, etc.)",
"main": "index.js",
"scripts": {
"test": "standard && node test.js",
"coverage": "nyc npm run test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"updatePackages": "ncu -e 2 || (ncu -u && npm i --ignore-scripts && npm run commitAndUpload)",
"commitAndUpload": "npm test && git commit -a -m 'update' && npm version patch && npm publish && git push"
},
"keywords": [
"words",
"Portuguese"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jfoclpf/words-pt.git"
},
"author": "João Pimentel Ferreira",
"license": "GPL-3.0",
"dependencies": {
"async": "^3.2.4",
"extract-zip": "2.0.1"
},
"devDependencies": {
"coveralls": "3.0.11",
"nyc": "15.0.1",
"standard": "14.3.3"
}
}