-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "spfx-jack",
"version": "1.7.0",
"description": "Helper to automate steps after initialising a new SPFx project",
"keywords": [
"SharePoint",
"SPFx"
],
"license": "ISC",
"author": "",
"bin": {
"spfx-jack": "./index.js"
},
"scripts": {
"postinstall": "npx sort-package-json && npx sort-package-json package-lock.json",
"lint:check": "eslint .",
"lint:fix": "npx prettier --write . && eslint . --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "jest --selectProjects e2e",
"test:jest_coverage_report": "jest --ci --json --coverage --testLocationInResults --outputFile=report.json",
"test:unit": "jest --selectProjects unit"
},
"jest": {
"projects": [
{
"displayName": "e2e",
"testMatch": [
"**/e2e/**.test.js"
],
"globalSetup": "./Jest/globalSetup.js",
"globalTeardown": "./Jest/globalTeardown.js"
},
{
"displayName": "unit",
"testMatch": [
"**/Commands/**.test.js",
"**/Utils/**.test.js"
]
}
]
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"prettier": "^3.0.3",
"sort-package-json": "^2.6.0"
},
"devDependencies": {
"eslint": "^8.54.0",
"jest": "^29.7.0",
"sort-object-keys": "^1.1.3",
"spfx-fast-serve": "^3.0.7"
}
}