-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 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
{
"name": "todoist",
"version": "1.0.3",
"description": "Todoist Sync API",
"homepage": "https://github.com/romgrk/node-todoist",
"bugs": {
"url": "https://github.com/romgrk/node-todoist/issues"
},
"contributors": [
{
"name": "romgrk",
"email": "romgrk.cc@gmail.com",
"url": "https://github.com/romgrk"
},
{
"name": "Tobias Kopelke",
"email": "nox@raynode.de",
"url": "https://github.com/lordnox"
}
],
"license": "MIT",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc && tsc --build tsconfig.esm.json",
"watch": "tsc --watch",
"test": "jest --bail",
"test:watch": "jest --bail --watch",
"test:coverage": "jest --coverage --watchAll=false"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"got": "^11.3.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/faker": "^4.1.11",
"@types/got": "^9.6.12",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.8",
"@types/uuid": "^8.0.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"faker": "^4.1.0",
"jest": "^25.2.4",
"nodemon": "^2.0.4",
"ts-jest": "^25.3.0",
"tslib": "^2.4.1",
"typescript": "^3.9.10"
}
}