-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.14 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.14 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
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
79
80
81
82
83
84
85
86
87
{
"name": "shopify-theme-actions",
"version": "1.2.2",
"description": "A set of GitHub Actions to enable fast Shopify theme development workflows",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test_coverage": "jest --coverage",
"lint": "eslint . --fix",
"build": "ncc build src/index.ts -o dist",
"format": "prettier . --write --config ./.prettierrc",
"docs": "rm -rf ./docs && typedoc --out ./docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthew-petrie/shopify-actions.git"
},
"keywords": [
"shopify",
"github",
"action",
"theme",
"ecommerce"
],
"author": "Matthew Petrie",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthew-petrie/shopify-actions/issues"
},
"engines": {
"node": "^12"
},
"homepage": "https://github.com/matthew-petrie/shopify-actions#readme",
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@tsconfig/node12": "^1.0.9",
"@types/jest": "^26.0.23",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vercel/ncc": "^0.28.6",
"axios-rate-limit": "^1.3.0",
"del": "^6.0.0",
"eslint": "^7.28.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.0.4",
"jest-junit": "^12.1.0",
"prettier": "^2.3.1",
"ts-jest": "^27.0.2",
"typedoc": "^0.21.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@actions/core": "^1.3.0",
"@actions/github": "^5.0.0",
"@shopify/themekit": "^1.1.8",
"axios": "^0.21.1",
"dotenv": "^10.0.0"
},
"jest": {
"testEnvironment": "node",
"reporters": [
"default",
"jest-junit"
],
"testTimeout": 100000,
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"./src/**/*.{ts,js,jsx}",
"!**/node_modules/**"
],
"coverageDirectory": "<rootDir>/coverage/"
},
"jest-junit": {
"suiteName": "Jest Tests",
"outputDirectory": "./tests/test-reports",
"ancestorSeparator": " > "
}
}