-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "form-studio",
"version": "0.15.0",
"author": "Chang Zhe Jiet",
"description": "A tool that helps design, create and manage form / survey / questionnaire through simple JSON configurations.",
"keywords": [
"form studio",
"form engine",
"form builder",
"form editor",
"form",
"survey",
"questionnaire",
"react"
],
"homepage": "https://github.com/ahzhezhe/form-studio#readme",
"repository": {
"type": "git",
"url": "https://github.com/ahzhezhe/form-studio"
},
"funding": "https://www.paypal.me/ahzhezhe",
"license": "ISC",
"files": [
".github/FUNDING.yml",
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/*.ts src/**/*.ts test/**/*.ts",
"test": "jest",
"build": "rm -rf dist && tsc",
"build:watch": "tsc -w",
"prepublishOnly": "npm run build",
"postpublish": "rm -rf dist",
"postversion": "git push",
"postinstall": "github-sponsors"
},
"dependencies": {
"github-sponsors": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}