-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "@pr-mpt/actions-assert",
"description": "Assert actual is expected in GitHub Workflows",
"main": "lib/main.js",
"scripts": {
"compile": "tsc",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "npm run compile && ncc build --source-map --license licenses.txt",
"test": "jest",
"style": "npm run format && npm run lint"
},
"engines": {
"node": ">=24.0.0"
},
"keywords": [
"actions",
"github-actions",
"assertions",
"assert"
],
"author": "Samuel Ryan <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"live-plugin-manager": "^0.17.0",
"minipass": "^3.3.5",
"superstruct": "^0.15.2"
},
"devDependencies": {
"@pr-mpt/assertions-is-equal": "^0.1.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0.38.4",
"eslint": "^8",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^26",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"prettier": "2.2.1",
"test-fixture-0": "npm:@assertions/test-fixture@^0.1.0",
"test-fixture-1": "npm:@assertions/test-fixture@^1.0.0",
"test-fixture-2": "npm:@assertions/test-fixture@^2.4.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}