-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.44 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
{
"name": "preact-naive-server-renderer",
"version": "0.1.0",
"description": "A native renderer implementation for server side",
"main": "lib/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepublishOnly": "npm-run-all -s clean compile:*",
"test": "jest --coverage",
"test:watch": "jest --watch",
"clean": "rm -rf lib",
"compile:code": "babel src --source-maps --out-dir lib --extensions '.js,.ts'",
"compile:types": "tsc --project tsconfig.production.json"
},
"files": [
"lib",
"types"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/huang-xiao-jian/preact-naive-server-renderer.git"
},
"keywords": [
"preact",
"server renderer"
],
"author": "huang.jian <hjj491229492@hotmail.com>",
"contributors": [
{
"name": "huang.jian",
"email": "hjj491229492@hotmail.com"
},
{
"name": "yang.yuncai",
"email": "383235388@qq.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/huang-xiao-jian/preact-naive-server-renderer/issues"
},
"homepage": "https://github.com/huang-xiao-jian/preact-naive-server-renderer#README",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/jest": "^25.1.2",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"cz-conventional-changelog": "3.1.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^4.2.5",
"jest": "^24.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.0",
"pretty-quick": "^2.0.0",
"typescript": "^4.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm-run-all test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"preact": "^10.5.8"
}
}