-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "betterTwitter",
"version": "0.0.1",
"description": "A typed twitter client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"!dist/**/*.map"
],
"repository": "https://github.com/larsvommars/betterTwitter",
"author": "LarsVomMars",
"license": "MIT",
"private": "true",
"scripts": {
"build": "./node_modules/.bin/tsc -p .",
"watch": "./node_modules/.bin/tsc -p . -w",
"lint": "./node_modules/.bin/eslint src/ --ext ts",
"format": "./node_modules/.bin/prettier -w '{*,{src,test}/**/*}.ts'",
"test": "node dist/test/test.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"pinst": "^2.1.1",
"prettier": "^2.0.5",
"typescript": "^4.1.5"
}
}