-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
133 lines (133 loc) · 3.58 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "san-ssr",
"version": "3.14.3",
"description": "San server-side-render framework and utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test",
"example": "example"
},
"files": [
"runtime",
"bin",
"dist",
"types",
"*.json",
"*.md"
],
"bin": {
"san-ssr": "./dist/bin/ssr.js"
},
"scripts": {
"lint": "eslint '**/*.ts' '**/*.js'",
"build": "tsc && chmod a+x dist/bin/*",
"watch": "tsc --watch",
"unit": "jest test/unit",
"e2e": "jest test/e2e.spec.ts",
"perf": "node ./test/perf/run.js cases",
"check": "npm test && npm run lint",
"test": "jest",
"coverage": "jest --coverage",
"semantic-release": "semantic-release",
"esbuild": "esbuild `find src -name '*.ts'` --sourcemap --platform=node --target=node10 --format=cjs --outdir=dist"
},
"repository": {
"type": "git",
"url": "https://github.com/baidu/san-ssr.git"
},
"author": "harttle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/baidu/san-ssr/issues"
},
"homepage": "https://github.com/baidu/san-ssr#readme",
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@jest/transform": "^26.2.2",
"@types/acorn": "^4.0.5",
"@types/astring": "^1.3.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.8",
"@types/lodash": "^4.14.158",
"@types/mkdirp": "^1.0.2",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"art-template": "^4.13.2",
"ejs": "^3.1.3",
"esbuild": "^0.12.29",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"etpl": "^3.2.0",
"handlebars": "^4.7.6",
"jest": "^27.0.6",
"mkdirp": "^1.0.4",
"mustache": "^4.0.1",
"san": "^3.14.1",
"san-html-cases": "^3.14.6",
"san-ssr-target-fake-cmd": "^1.0.0",
"san-ssr-target-fake-esm": "^1.0.0",
"source-map-support": "^0.5.19",
"swig-templates": "^2.0.3"
},
"optionalDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"semantic-release": "^19.0.2"
},
"dependencies": {
"@types/estree": "0.0.45",
"acorn": "^8.0.1",
"acorn-walk": "^8.0.0",
"astring": "^1.4.3",
"camelcase": "^6.0.0",
"chalk": "^4.1.0",
"debug": "^4.1.1",
"lodash": "^4.17.19",
"ts-morph": "^7.1.3",
"typescript": "^4.3.5",
"yargs": "^15.4.1"
},
"peerDependencies": {
"san": "^3.9.5"
},
"release": {
"tagFormat": "nv${version}",
"branches": [
"master",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}