-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "unlisted-friends",
"description": "A library for verify which following friends on Twitter that are not in your lists.",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"commit": "git-cz",
"cover": "nyc npm run test",
"lint": "eslint src",
"precommit": "npm run build && git add dist",
"report-coverage:html": "nyc report --reporter=html && open coverage/index.html",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 ava 'tests/**/*.test.js' --verbose",
"watch:cover": "nodemon --quiet --watch src --exec npm run cover -s",
"watch:test": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/glrodasz/unlisted-friends.git"
},
"keywords": [
"twitter",
"unlisted",
"friends",
"lists"
],
"author": "Guillermo Rodas <glrodasz@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=13.2.0",
"yarn": ">=1.15.2"
},
"dependencies": {
"twit": "2.2.11"
},
"devDependencies": {
"ava": "0.17.0",
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.22.0",
"codecov": "3.6.5",
"commitizen": "2.9.5",
"cz-conventional-changelog": "1.2.0",
"eslint": "4.18.2",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-import": "2.2.0",
"ghooks": "2.0.0",
"nyc": "10.1.2",
"semantic-release": "^17.0.4"
},
"resolutions": {
"lodash": "4.17.12",
"braces": "2.3.1",
"underscore.string": "3.3.5",
"minimist": "1.2.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage && npm run lint"
}
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"nyc": {
"include": [
"src/**/*.js"
]
},
"bugs": {
"url": "https://github.com/glrodasz/unlisted-friends/issues"
},
"homepage": "https://github.com/glrodasz/unlisted-friends#readme"
}