This repository has been archived by the owner on Jul 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "effectist",
"version": "0.0.1",
"description": "Todoist API wrapper for the Auth, REST and Sync endpoints",
"source": "src/index.ts",
"main": "dist/effectist.js",
"exports": "./dist/effectist.modern.js",
"module": "dist/effectist.module.js",
"unpkg": "dist/effectist.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"fix": "eslint --fix . --ext .js,.ts",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixeldesu/effectist.git"
},
"keywords": [
"todoist",
"api",
"rest",
"sync"
],
"author": "Andreas Nedbal <git@pixelde.su>",
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"deepmerge": "^4.2.2",
"form-data": "^2.3.3",
"isomorphic-unfetch": "^3.1.0"
},
"devDependencies": {
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"microbundle": "^0.13.0",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pixeldesu/effectist/issues"
},
"homepage": "https://github.com/pixeldesu/effectist#readme"
}