-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"name": "plauti-example-code",
"private": true,
"version": "1.0.0",
"description": "plauti-example-code",
"scripts": {
"lint": "npm run lint:lwc",
"lint:lwc": "eslint force-app/main/default/lwc",
"test": "npm run test:unit",
"test:unit": "sfdx-lwc-jest",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:coverage": "sfdx-lwc-jest --coverage",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\""
},
"devDependencies": {
"@prettier/plugin-xml": "^0.7.0",
"@salesforce/eslint-config-lwc": "^0.4.0",
"@salesforce/sfdx-lwc-jest": "^0.10.4",
"eslint": "^5.16.0",
"prettier-plugin-apex": "^1.0.0"
},
"main": "index.js",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plauti/plauti-example-code.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/plauti/plauti-example-code/issues"
},
"homepage": "https://github.com/plauti/plauti-example-code#readme",
"dependencies": {
"jsforce": "^1.9.3"
}
}