generated from sindresorhus/node-module-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
100 lines (100 loc) · 2.47 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "todoist-rest-api",
"version": "1.3.4",
"description": "A full-featured node.js wrapper for Todoist REST API",
"keywords": [
"todoist",
"rest",
"api"
],
"homepage": "https://github.com/moranje/todoist-rest-api#readme",
"bugs": {
"url": "https://github.com/moranje/todoist-rest-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/moranje/todoist-rest-api.git"
},
"license": "MIT",
"author": {
"name": "M. Oranje",
"email": "martieno@gmail.com"
},
"files": [
"dist",
"licence",
"readme.md",
"package.json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "./tools/build.sh",
"commit": "./node_modules/cz-customizable/standalone.js",
"coverage": "nyc --reporter=lcov ava",
"lint": "tsc --noEmit && npx eslint \"src/**/*.ts\" --fix",
"semantic-release": "semantic-release",
"test": "nyc ava --watch",
"test:prod": "npm run lint && nyc ava"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./cz-config.js"
}
},
"ava": {
"concurrency": 4,
"files": [
"test/**/*.ts",
"!**/*fixtures*"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
}
},
"timeout": "1m"
},
"dependencies": {
"fast-safe-stringify": "2.0.7",
"got": "10.7.0",
"query-string": "6.13.8",
"uuid": "3.4.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.5",
"@types/uuid": "3.4.7",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"ava": "3.4.0",
"cz-customizable": "6.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^5.0.1",
"husky": "4.2.3",
"lint-staged": "10.1.1",
"nock": "12.0.1",
"nyc": "15.1.0",
"prettier": "1.19.1",
"rollup": "^1.31.0",
"rollup-plugin-dts": "^1.2.1",
"semantic-release": "^17.0.2",
"semantic-release-cli": "5.2.3",
"ts-node": "8.8.1",
"typescript": "3.8.3"
},
"engines": {
"node": ">=10"
}
}