forked from baidu/san-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.75 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
134
135
{
"name": "san-ssr",
"version": "5.0.4",
"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'",
"docs": "typedoc --theme pages-plugin --pages ./manual/config.json --out docs src && touch docs/.nojekyll",
"build": "tsc && chmod a+x dist/bin/*",
"watch": "tsc --watch",
"unit": "jest test/unit",
"e2e": "jest test/e2e.spec.ts",
"perf": "node ./test/perf/index.js",
"check": "npm test && npm run lint",
"test": "jest",
"coverage": "jest --coverage",
"version": "npm run build && npm run docs",
"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/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@jest/transform": "^26.2.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.3",
"@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",
"babel-plugin-transform-class-properties": "^6.24.1",
"ejs": "^3.1.3",
"esbuild": "^0.12.19",
"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.10.0",
"san-html-cases": "^3.10.23",
"san-ssr-target-fake-cmd": "^1.0.0",
"san-ssr-target-fake-esm": "^1.0.0",
"semantic-release": "^17.4.4",
"source-map-support": "^0.5.19",
"swig-templates": "^2.0.3",
"typedoc": "^0.17.8",
"typedoc-plugin-pages": "^1.1.0"
},
"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": {
"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": [
"docs",
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}