forked from jetstreamapp/soql-parser-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.35 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.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
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
{
"name": "soql-parser-js",
"version": "4.6.0",
"description": "Salesforce.com SOQL parser and composer",
"main": "dist/index.js",
"module": "dist_esm/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist/*",
"clean:esm": "rm -rf ./dist_esm/*",
"clean:cli": "rm -rf ./dist_cli/*",
"prebuild": "npm run clean",
"build": "npm-run-all compile bundle:regular bundle:min build:esm build:cli",
"build:esm": "npm-run-all clean:esm compile:esm",
"build:cli": "npm-run-all clean:cli compile:cli",
"compile": "tsc --project tsconfig.json",
"compile:esm": "tsc --project tsconfig-esm.json",
"compile:cli": "tsc --project tsconfig-cli.json",
"bundle:regular": "webpack --config webpack-regular.config.js",
"bundle:min": "webpack --config webpack-min.config.js",
"tsc": "./node_modules/.bin/tsc",
"release": "release-it",
"copy-tc-to-docs": "ts-node ./tasks/copy-test-cases-to-docs.ts",
"test": "jest --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"
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.js.map",
"dist/src/**/*.d.ts",
"dist/index.js",
"dist/index.min.js",
"dist/main.licenses.txt",
"dist_esm/**/*.js",
"dist/src/**/*.js.map",
"dist_cli/**/*.js",
"bin/**/*.js",
"README.md",
"LICENSE.txt",
"CHANGELOG.md"
],
"dependencies": {
"chevrotain": "^9.0.1",
"commander": "^2.20.3",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jest": "^28.1.4",
"@types/lodash.get": "^4.4.6",
"@types/node": "^16.11.43",
"chalk": "^4.1.2",
"fs-extra": "^8.1.0",
"jest": "^28.1.2",
"jsonfile": "^5.0.0",
"license-webpack-plugin": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"release-it": "^15.1.0",
"string-replace-loader": "^2.2.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.2.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"keywords": [
"soql",
"salesforce",
"parse",
"compose",
"parser"
],
"repository": {
"type": "git",
"url": "https://github.com/paustint/soql-parser-js"
}
}