-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "keyword-in-tweet",
"version": "1.2.2",
"description": "A package that, when a tweet's text and a keyword are passed in, evaluates if the keyword is in the tweet",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --clearCache && jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm run build && npm test"
},
"keywords": [
"text",
"phrase",
"parse",
"text",
"tweet",
"keyword",
"twitter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/isaacwashere/keyword-in-tweet.git"
},
"author": "Isaac Curtiss <ijcurtiss7@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/isaacwashere/keyword-in-tweet/issues"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"files": [
"lib/**/*"
]
}