-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@os-gurus/assemble",
"version": "1.0.2",
"description": "A small but powerful functional programming utility for type-safe pipes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "src/index.ts",
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist"
],
"author": "Tim Kinnane <timkinnane@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OS-Gurus/assemble.git"
},
"private": false,
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.1",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"dts-jest": "^24.0.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.4",
"node-fetch": "^2.6.1",
"prettier": "^2.3.1",
"semantic-release": "^17.4.3",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {},
"scripts": {
"snaps": "dts-jest-remap test/dts-jest/**/*.test.ts --rename {{basename}}.snap.{{extname}}",
"pretest": "yarn snaps --check",
"posttest:update": "yarn snaps",
"test": "jest",
"test:update": "jest --no-cache -u",
"test:watch": "jest --watch",
"lint": "eslint src",
"build": "tsc -p .",
"dev": "yarn build --watch",
"actions": "act -s GITHUB_TOKEN"
},
"release": {
"branches": [
"trunk"
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}