|
1 | 1 | {
|
2 |
| - "name": "advanced-search-query", |
3 |
| - "version": "0.0.0-development", |
4 |
| - "description": "Another parser for advanced search query syntax.", |
5 |
| - "main": "build/cjs/src/index.js", |
6 |
| - "module": "build/esm/src/index.js", |
7 |
| - "types": "build/cjs/src/index.d.ts", |
8 |
| - "files": [ |
9 |
| - "src", |
10 |
| - "build" |
11 |
| - ], |
12 |
| - "scripts": { |
13 |
| - "build": "ts-build . --cjs --esm --out-dir build", |
14 |
| - "ci": "yarn test && yarn build", |
15 |
| - "prepare": "yarn build", |
16 |
| - "prepublishOnly": "yarn ci", |
17 |
| - "test": "jest", |
18 |
| - "testWatch": "jest --watch", |
19 |
| - "semantic-release": "semantic-release" |
20 |
| - }, |
21 |
| - "author": "Julian Hundeloh <[email protected]> (https://approvals.cloud)", |
22 |
| - "license": "MIT", |
23 |
| - "keywords": [ |
24 |
| - "query parser", |
25 |
| - "querystrings", |
26 |
| - "search", |
27 |
| - "search syntax parser", |
28 |
| - "search query" |
29 |
| - ], |
30 |
| - "repository": "[email protected]:jaulz/advanced-search-query.git", |
31 |
| - "devDependencies": { |
32 |
| - "@ts-tools/build": "^1.2.6", |
33 |
| - "@types/jest": "^26.0.3", |
34 |
| - "cz-conventional-changelog": "^3.2.0", |
35 |
| - "husky": "^4.2.5", |
36 |
| - "jest": "^26.1.0", |
37 |
| - "jest-cli": "^26.1.0", |
38 |
| - "prettier": "^2.0.5", |
39 |
| - "pretty-quick": "^2.0.1", |
40 |
| - "semantic-release": "^17.1.1", |
41 |
| - "ts-jest": "^26.1.1", |
42 |
| - "typescript": "^3.9.5" |
43 |
| - }, |
44 |
| - "config": { |
45 |
| - "commitizen": { |
46 |
| - "path": "./node_modules/cz-conventional-changelog" |
| 2 | + "name": "advanced-search-query", |
| 3 | + "version": "0.0.0-development", |
| 4 | + "description": "Another parser for advanced search query syntax.", |
| 5 | + "main": "build/cjs/src/index.js", |
| 6 | + "module": "build/esm/src/index.js", |
| 7 | + "types": "build/cjs/src/index.d.ts", |
| 8 | + "files": [ |
| 9 | + "src", |
| 10 | + "build" |
| 11 | + ], |
| 12 | + "scripts": { |
| 13 | + "build": "ts-build . --cjs --esm --out-dir build", |
| 14 | + "ci": "yarn test && yarn build", |
| 15 | + "prepare": "yarn build", |
| 16 | + "prepublishOnly": "yarn ci", |
| 17 | + "test": "jest", |
| 18 | + "testWatch": "jest --watch" |
| 19 | + }, |
| 20 | + "author": "Julian Hundeloh <[email protected]> (https://approvals.cloud)", |
| 21 | + "license": "MIT", |
| 22 | + "keywords": [ |
| 23 | + "query parser", |
| 24 | + "querystrings", |
| 25 | + "search", |
| 26 | + "search syntax parser", |
| 27 | + "search query" |
| 28 | + ], |
| 29 | + "repository": "[email protected]:jaulz/advanced-search-query.git", |
| 30 | + "devDependencies": { |
| 31 | + "@ts-tools/build": "^1.2.6", |
| 32 | + "@types/jest": "^26.0.3", |
| 33 | + "cz-conventional-changelog": "^3.2.0", |
| 34 | + "husky": "^4.2.5", |
| 35 | + "jest": "^26.1.0", |
| 36 | + "jest-cli": "^26.1.0", |
| 37 | + "prettier": "^2.0.5", |
| 38 | + "pretty-quick": "^2.0.1", |
| 39 | + "semantic-release": "^17.1.1", |
| 40 | + "ts-jest": "^26.1.1", |
| 41 | + "typescript": "^3.9.5" |
| 42 | + }, |
| 43 | + "config": { |
| 44 | + "commitizen": { |
| 45 | + "path": "./node_modules/cz-conventional-changelog" |
| 46 | + } |
| 47 | + }, |
| 48 | + "prettier": { |
| 49 | + "singleQuote": true, |
| 50 | + "trailingComma": "es5", |
| 51 | + "semi": false |
| 52 | + }, |
| 53 | + "husky": { |
| 54 | + "hooks": { |
| 55 | + "post-merge": "yarn install", |
| 56 | + "post-rewrite": "yarn install", |
| 57 | + "pre-commit": "yarn test && pretty-quick --staged --verbose" |
| 58 | + } |
| 59 | + }, |
| 60 | + "dependencies": { |
| 61 | + "@types/lodash.groupby": "^4.6.6", |
| 62 | + "lodash.groupby": "^4.6.0" |
47 | 63 | }
|
48 |
| - }, |
49 |
| - "prettier": { |
50 |
| - "singleQuote": true, |
51 |
| - "trailingComma": "es5", |
52 |
| - "semi": false |
53 |
| - }, |
54 |
| - "husky": { |
55 |
| - "hooks": { |
56 |
| - "post-merge": "yarn install", |
57 |
| - "post-rewrite": "yarn install", |
58 |
| - "pre-commit": "yarn test && pretty-quick --staged --verbose" |
59 |
| - } |
60 |
| - }, |
61 |
| - "dependencies": { |
62 |
| - "@types/lodash.groupby": "^4.6.6", |
63 |
| - "lodash.groupby": "^4.6.0" |
64 |
| - }, |
65 |
| - "resolutions": { |
66 |
| - "readable-stream": "^3.4.0" |
67 |
| - } |
68 | 64 | }
|
0 commit comments