generated from samhuk/ts-npm-package-template
-
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.48 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.48 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": "@samhuk/data-query",
"version": "1.2.3",
"description": "Data query package with SQL and URL conversions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"clean-unit-tests": "rimraf ./build-test",
"build-unit-tests": "tsc -p ./tsconfig.test.json",
"run-unit-tests": "jest",
"unit-tests": "npm run clean-unit-tests && npm run build-unit-tests && npm run run-unit-tests",
"lint": "eslint -c .eslintrc.json ./src --ext .ts,.tsx",
"lint-errors-only": "eslint -c .eslintrc.json ./src --ext .ts,.tsx --quiet",
"clean": "rimraf ./dist",
"build-ts": "npm run clean && tsc -p ./tsconfig.dist.json",
"check": "npm rum lint-errors-only && npm run build-ts && npm run unit-tests",
"start": "tsc -p ./src/tsconfig.json --watch"
},
"author": "",
"repository": "https://github.com/samhuk/data-query",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@samhuk/data-filter": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-jest": "^28.1.1",
"concurrently": "^7.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
}
}