-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 874 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 874 Bytes
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
{
"name": "@honkjs/components",
"version": "1.0.3",
"description": "Component middleware for honk.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"tests"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"version": "tsc",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honkjs/components.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/honkjs/components/issues"
},
"homepage": "https://github.com/honkjs/components",
"dependencies": {
"@honkjs/honk": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"jest": "^24.1.0",
"np": "^4.0.2",
"ts-jest": "^23.1.3",
"typescript": "^3.0.1"
},
"publishConfig": {
"access": "public",
"tag": "next"
}
}