-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.65 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
{
"name": "@ergatejs/ergate",
"version": "0.0.0-development",
"description": "core tools for ergatejs",
"main": "index.js",
"bin": "bin/cli.js",
"scripts": {
"build": "tsc",
"ci": "npm run test -- --coverage",
"clean": "./scripts/clean.sh",
"dev": "tsc -w",
"lint": "eslint . --ext .ts",
"semantic-release": "semantic-release",
"test": "jest --verbose"
},
"dependencies": {
"common-bin": "^2.8.2",
"consola": "^2.10.1",
"debug": "^4.1.1",
"get-stream": "^5.1.0",
"git-log-parser": "^1.2.0",
"parse-github-url": "^1.0.2"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"coffee": "^5.2.2",
"eslint": "^6.4.0",
"eslint-config-egg": "^7.5.1",
"eslint-plugin-jest": "^22.17.0",
"jest": "^24.8.0",
"mz-modules": "^2.1.0",
"semantic-release": "^15.13.18",
"ts-jest": "^24.0.2",
"ts-node": "^8.4.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"release": {
"branche": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"jest": {
"roots": [
"./test"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"collectCoverage": false,
"coverageReporters": ["json", "lcov", "text"],
"testMatch": [
"**/__tests__/**/*.[j]s",
"**/?(*.)+(spec|test).[j]s"
]
},
"publishConfig": {
"access": "public"
},
"author": "Thonatos.Yang",
"license": "MIT",
"repository": "git@github.com:ergatejs/ergate.git"
}