-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.59 KB
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
{
"name": "@spaceavocado/librarian",
"version": "0.4.5",
"description": "A micro search library leveraging Boolean Operators, supporting Wildcard annotation within search terms.",
"main": "lib/librarian.js",
"module": "lib/librarian.esm.js",
"typings": "types/index.d.ts",
"files": [
"/lib",
"/types",
"changelog.md",
"readme.md",
"license.txt"
],
"author": {
"name": "David Horak",
"email": "info@davidhorak.com"
},
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --max-warnings 0 \"src/**/*.{ts,js}\"",
"lint:fix": "eslint --max-warnings 0 \"src/**/*.{ts,js}\" --fix",
"prepublishOnly": "npm run test && npm run build",
"check-licenses": "license-checker --summary --excludePrivatePackages --onlyAllow \"MIT;MIT OR X11;Apache-2.0;ISC;BSD-3-Clause;BSD-2-Clause;CC-BY-4.0;Public Domain;BSD;CC-BY-3.0;CC0-1.0;Python-2.0;Unlicense\""
},
"repository": {
"type": "git",
"url": "git@github.com:spaceavocado/librarian.git"
},
"bugs": {
"url": "https://github.com/spaceavocado/librarian/issues"
},
"homepage": "https://github.com/spaceavocado/librarian",
"keywords": [
"search",
"wildcard",
"boolean"
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"license-checker": "^25.0.1",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rollup": "^2.61.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}