-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
120 lines (120 loc) · 3.66 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
{
"name": "san-ssr-target-php",
"version": "2.7.0",
"description": "San SSR code generation targiting PHP",
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"runtime",
"bin",
"dist",
"types",
"index.d.ts",
"*.json",
"*.md"
],
"bin": {
"san-ssr-target-php-helpers": "./bin/helpers"
},
"scripts": {
"clean": "rm -rf ./dist test/cases/*/ssr.php",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"docs": "rm -rf node_modules/typedoc/node_modules/typescript && typedoc --out docs src && touch docs/.nojekyll",
"build": "tsc && ./bin/helpers > runtime/helpers.php",
"watch": "tsc --watch",
"unit-php": "./vendor/bin/phpunit test/unit",
"unit-ts": "jest test/unit",
"unit": "npm run unit-ts && npm run unit-php",
"e2e": "jest test/e2e.spec.ts",
"coveralls": "npm run build && npm run coverage && cat coverage/lcov.info | coveralls",
"coverage": "jest --coverage",
"test": "npm run build && npm run unit && npm run e2e",
"check": "rm -rf dist && npm run test && npm run lint",
"render": "./bin/render.js",
"version": "npm run build && npm run docs",
"perf": "./test/perf/build.js && php ./test/perf/index.php",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/searchfe/san-ssr-target-php.git"
},
"author": "harttle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/searchfe/san-ssr-target-php/issues"
},
"homepage": "https://github.com/searchfe/san-ssr-target-php#readme",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.0",
"@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.1",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.8",
"@types/lodash": "^4.14.158",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-jest": "^26.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-jest": "^26.2.0",
"coveralls": "^3.1.0",
"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",
"jest": "^26.2.2",
"san-html-cases": "^3.10.12",
"san-ssr": "^4.5.0",
"semantic-release": "^17.1.1",
"typedoc": "^0.17.8",
"wdio-sauce-service": "^0.4.14",
"wdio-spec-reporter": "^0.1.5"
},
"dependencies": {
"camelcase": "^6.0.0",
"chalk": "^4.1.0",
"debug": "^4.1.1",
"lodash": "^4.17.19",
"san": "^3.10.0",
"snake-case": "^3.0.3",
"ts-morph": "7.1.3",
"ts2php": "^0.29.0",
"typescript": "^3.9.7",
"yargs": "^15.4.1"
},
"peerDependencies": {
"san-ssr": "^4.4.2"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}