forked from deejay-hub/timeline-lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 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
{
"name": "timeline-lwc",
"author": "Dave Norris",
"description": "An interactive timeline for the Salesforce platform",
"private": true,
"version": "1.1.2",
"engines": {
"node": ">= 12.14.1",
"npm": ">= 6.13.6"
},
"scripts": {
"lint": "eslint **/lwc/**",
"test": "npm run lint && 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,yaml,yml}'",
"prettier:verify": "prettier --list-different '**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}'"
},
"devDependencies": {
"@salesforce/eslint-config-lwc": "^0.7.0",
"@salesforce/sfdx-lwc-jest": "^0.7.1",
"eslint": "^7.1.0",
"prettier": "^2.0.5",
"prettier-plugin-apex": "^1.5.0",
"semver": "^7.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deejay-hub/timeline-lwc"
},
"dependencies": {
"check-node-version": "^4.0.3"
}
}