-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
74 lines (74 loc) · 1.76 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
{
"name": "jstodotxt",
"version": "1.0.0-alpha.2",
"author": "John Hobbs <[email protected]>",
"description": "a library for working with todo.txt formatted files",
"license": "MIT",
"contributors": [
{
"name": "bartlibert",
"url": "https://github.com/bartlibert"
},
{
"name": "Ryan Gaus",
"url": "https://github.com/1egoman"
},
{
"name": "Davide Ferrero",
"url": "https://github.com/davideferre"
},
{
"name": "Kirill Goncharov",
"url": "https://github.com/xuhcc"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jmhobbs/jsTodoTxt.git"
},
"files": [
"./lib",
"!**/*.test.{js,d.ts}{,.map}"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"docs": "typedoc ./src/index.ts",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts",
"lint:format": "prettier --check 'src/**/*.ts'",
"test": "c8 --reporter=lcov --reporter=text ava",
"dev:test": "ava --watch",
"dev:docs": "typedoc --watch ./src/index.ts",
"prepare": "run-s lint test clean build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"ava": "^4.3.3",
"c8": "^7.12.0",
"eslint": "^8.26.0",
"eslint-plugin-ava": "^13.2.0",
"jsdoc": "^3.6.11",
"jsdoc-plugin-typescript": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tsx": "^3.11.0",
"typedoc": "^0.23.17",
"typescript": "^4.8.4"
},
"ava": {
"files": [
"./src/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"@esbuild-kit/cjs-loader"
]
}
}