-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
78 lines (78 loc) · 2.07 KB
/
package.json
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.1.0",
"description": "Salesforce.com SOQL parser and composer",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/src/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist/*",
"prebuild": "npm run clean",
"build": "npm-run-all build:cjs bundle:cjs build:esm build:cli",
"build:cjs": "tsc --project tsconfig.json",
"build:esm": "tsc --project tsconfig-esm.json",
"build:cli": "tsc --project tsconfig-cli.json",
"bundle:regular": "webpack --config webpack-regular.config.js",
"bundle:cjs": "webpack --config webpack.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"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**",
"bin/**",
"AUTHORS.md",
"CHANGELOG.md",
"LICENSE.txt",
"package.json",
"README.md"
],
"dependencies": {
"chevrotain": "^10.5.0",
"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.9",
"@types/node": "^20.14.2",
"chalk": "^4.1.2",
"fs-extra": "^8.1.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jsonfile": "^5.0.0",
"license-webpack-plugin": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"release-it": "^17.0.1",
"string-replace-loader": "^2.2.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.2.3",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"keywords": [
"soql",
"salesforce",
"parse",
"compose",
"parser"
],
"repository": {
"type": "git",
"url": "https://github.com/jetstreamapp/soql-parser-js"
}
}