-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
{
"name": "TwitterScore",
"version": "1.0.0",
"description": "A naive approach to identifying bots and trolls on Twitter",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"repository": "https://github.com/lorenzopicoli/bot-scanner",
"license": "MIT",
"keywords": [],
"scripts": {
"start": "node build",
"build:start": "run-s build && node build",
"build": "run-s clean && run-p build:main",
"build:main": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:eslint": "eslint --fix --ext .ts,.tsx .",
"test": "run-s build test:*",
"test:lint": "eslint . --ext .ts,.tsx && prettier \"src/**/*.ts\" --list-different",
"test:unit": "nyc --silent ava",
"watch": "run-s clean build:main && run-p \"build:main -- -w\"",
"cov": "run-s build test:unit cov:html && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:send": "nyc report --reporter=lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"clean": "trash build test"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@types/bluebird": "^3.5.30",
"@types/lodash": "^4.14.150",
"@types/minimist": "^1.2.0",
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"chalk": "^4.0.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"moment": "^2.25.3",
"querystring": "^0.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"ava": "^3.8.1",
"codecov": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"open-cli": "^5.0.0",
"prettier": "^1.18.2",
"standard-version": "^6.0.1",
"trash-cli": "^3.0.0",
"typescript": "^3.8.3"
},
"ava": {
"failFast": true,
"files": [
"build/**/*.spec.js"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}