-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "@6river/where-filter",
"version": "0.0.0-development",
"description": "SQL where-like filter function builder",
"repository": {
"type": "git",
"url": "https://github.com/6RiverSystems/where-filter.git"
},
"license": "MIT",
"author": "",
"main": "dist/where-filter.js",
"typings": "dist/where-filter.d.ts",
"files": [
"where-filter.ts",
"dist"
],
"scripts": {
"commitmsg": "commitlint -e ${GIT_PARAMS}",
"lint": "npm-run-all lint:eslint lint:prettier",
"lint:eslint": "eslint ${ESLINT_OPTS} .",
"lint:prettier": "prettier --check ${PRETTIER_OPTS} .",
"pretest": "npm run lint",
"test": "nyc mocha --timeout 4000",
"test:watch": "npm run test -- --watch",
"build": "tsc -p tsconfig.json"
},
"devDependencies": {
"@6river/prettier-config": "1.1.8",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"chai": "^4.1.2",
"eslint": "8.37.0",
"eslint-config-6river": "7.0.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-6river": "1.0.7",
"eslint-plugin-import": "2.27.5",
"husky": "^0.14.3",
"luxon": "^1.3.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"typescript": "^5.7.2"
}
}