forked from dangmai/prettier-plugin-apex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "prettier-plugin-apex",
"version": "1.10.0",
"description": "Salesforce Apex plugin for Prettier",
"main": "dist/src/index.js",
"bin": {
"start-apex-server": "./dist/bin/start-apex-server.js",
"stop-apex-server": "./dist/bin/stop-apex-server.js",
"apex-ast-serializer": "./vendor/apex-ast-serializer/bin/apex-ast-serializer",
"apex-ast-serializer-http": "./vendor/apex-ast-serializer/bin/apex-ast-serializer-http"
},
"engines": {
"node": ">= 14.0.0"
},
"files": [
"/dist",
"/vendor"
],
"scripts": {
"build": "tsc",
"build:prod": "tsc --project tsconfig.prod.json",
"dev": "tsc --watch",
"pretest": "npm run lint && npm run build",
"test": "jest",
"start-server": "ts-node bin/start-apex-server.ts",
"wait-server": "wait-on --timeout 300000 http://localhost:2117/api/ast/",
"stop-server": "ts-node bin/stop-apex-server.ts",
"lint": "eslint \"{src,tests_config}/**/*.{js,ts}\"",
"prettier": "prettier --write \"{src,tests_config}/**/*.{js,ts}\" \"./*.md\"",
"debug-check": "prettier --apex-standalone-parser built-in --apex-standalone-port 2117 --debug-check --plugin=."
},
"keywords": [
"apex",
"prettier"
],
"author": "Dang Mai <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node14": "1.0.3",
"@types/jest": "29.1.1",
"@types/node": "17.0.15",
"@types/wait-on": "5.3.1",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"eslint": "8.24.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.1.2",
"jest-snapshot-serializer-raw": "1.2.0",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-migrate": "0.1.33",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"peerDependencies": {
"prettier": "^2.0.0"
},
"dependencies": {
"axios": "^0.27.0",
"jest-docblock": "^29.0.0",
"wait-on": "^6.0.0",
"yargs": "^17.0.0"
}
}