-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "hootsuite.js",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start:dev": "nodemon --watch \"src/**/*.ts\" --ignore \"node_modules/**/*\" --exec ts-node src/index.ts",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inf3cti0n95/hootsuite.js.git"
},
"keywords": [
"hootsuite"
],
"author": "Viraj Trivedi <inf3cti0n95@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inf3cti0n95/hootsuite.js/issues"
},
"homepage": "https://github.com/inf3cti0n95/hootsuite.js#readme",
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/form-data": "^2.5.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/node": "^14.0.14",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"@types/jest": "^26.0.14",
"jest": "^26.4.2",
"ts-jest": "^26.4.1",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"es6-promise": "^4.2.8",
"form-data": "^3.0.0",
"isomorphic-fetch": "^3.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
}
}