-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 883 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 883 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
{
"name": "@honkjs/forms",
"version": "0.2.0",
"description": "Helper for keeping track of forms model state changes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.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/forms.git"
},
"author": "Kellen Piffner",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/honkjs/forms/issues"
},
"homepage": "https://github.com/honkjs/forms",
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"np": "^4.0.2",
"ts-jest": "^25.1.0",
"typescript": "^3.5.3"
},
"publishConfig": {
"access": "public",
"tag": "next"
}
}