-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.27 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.27 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
{
"name": "@jetstreamapp/soql-parser-js",
"version": "6.3.1",
"description": "Salesforce.com SOQL parser and composer",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
}
},
"scripts": {
"clean": "rm -rf ./dist/*",
"prebuild": "npm run clean",
"build": "npm-run-all build:esm build:lwc build:cjs build:cli build:declarations",
"build:esm": "esbuild src/index.ts --bundle --outfile=dist/esm/index.mjs --minify --format=esm --target=es2022",
"build:lwc": "esbuild src/index.ts --bundle --outfile=dist/lwc/index.js --format=esm --target=es2022",
"build:cjs": "esbuild src/index.ts --bundle --outfile=dist/cjs/index.js --minify --format=cjs --target=es2022",
"build:cli": "esbuild cli/index.ts --bundle --outfile=dist/cli/index.js --minify --format=cjs --target=es2022 --platform=node",
"build:declarations": "tsc --project tsconfig.json",
"tsc": "tsc",
"release": "release-it",
"copy-tc-to-docs": "tsx ./tasks/copy-test-cases-to-docs.ts",
"test": "vitest --passWithNoTests --testTimeout 10000",
"test:watch": "jest --watch",
"soql-parser-js": "node ./bin"
},
"author": "Austin Turner <paustint@gmail.com>",
"license": "MIT",
"bin": {
"soql-parser-js": "bin/soql-parser-js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**",
"bin/**",
"AUTHORS.md",
"CHANGELOG.md",
"LICENSE.txt",
"package.json",
"README.md"
],
"dependencies": {
"chevrotain": "^11.0.3",
"commander": "^2.20.3",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@types/lodash.get": "^4.4.9",
"@types/node": "^20.14.2",
"@vitest/ui": "^3.1.3",
"chalk": "^4.1.2",
"esbuild": "0.25.4",
"license-webpack-plugin": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"release-it": "^17.0.1",
"tsx": "^4.19.4",
"typescript": "^4.2.3",
"vitest": "^3.1.3"
},
"keywords": [
"soql",
"salesforce",
"parse",
"compose",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jetstreamapp/soql-parser-js.git"
}
}