-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.56 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
{
"name": "webhoot",
"version": "0.0.5",
"license": "MIT",
"description": "Library for Twitter Account Activity API ",
"repository": {
"type": "git",
"url": "winstxnhdw/webhoot"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint",
"prepublish": "npm run build",
"ts": "yarn run ts-node -r tsconfig-paths/register"
},
"devDependencies": {
"@rollup/plugin-eslint": "^9.0.0",
"@types/jest": "^29.1.2",
"@types/request-promise": "^4.1.47",
"@types/twitter": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"prettier": "^2.2.1",
"rollup": "^3.0.0",
"rollup-plugin-ts": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"type-fest": "^3.1.0",
"typescript": "^4.1.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
],
"moduleNameMapper": {
"^@/(.+)": "<rootDir>/src/$1"
}
},
"dependencies": {
"axios": "^1.1.2",
"request-promise": "^4.2.6",
"twitter": "^1.7.1",
"ufo": "^0.8.5"
}
}