-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.51 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
70
71
72
73
74
75
76
77
78
{
"name": "todoist-sync",
"version": "0.0.0",
"description": "sync todoist data",
"main": "src/index.js",
"scripts": {
"test": "nyc ava",
"lint": "eslint --fix --ext .js,.vue --ignore-path .eslintignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/willin-love/todoist-sync.git"
},
"keywords": [
"v0",
"willin",
"todoist",
"sync",
"love"
],
"author": "Willin Wang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/willin-love/todoist-sync/issues"
},
"homepage": "https://github.com/willin-love/todoist-sync#readme",
"dependencies": {
"rimraf": "^3.0.2",
"sdk0": "^0.1.0"
},
"devDependencies": {
"ava": "^3.11.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-willin": "^1.0.5",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nyc": "^15.1.0",
"prettier": "^2.0.5"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=8.0"
},
"ava": {
"files": [
"test/**/*.js",
"!**/_*/*.js",
"!**/_*.js"
]
},
"nyc": {
"lines": 80,
"check-coverage": true,
"reporter": [
"lcov",
"html"
],
"report-dir": "./.nyc_output",
"exclude": [
"test",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**"
]
}
}