-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.11 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.11 KB
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
{
"name": "@formsort/react-embed",
"version": "3.5.0",
"description": "Embed formsort flows in react components",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"format": "eslint --ext .ts,.tsx src --fix",
"lint": "eslint --ext .ts,.tsx src",
"pack": "yarn pack",
"release": "craft prepare --publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formsort/oss.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"formsort",
"embed",
"react"
],
"author": "Formsort Engineering <engineering@formsort.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/formsort/oss/issues"
},
"homepage": "https://github.com/formsort/oss/tree/master/packages/react-embed#readme",
"devDependencies": {
"@formsort/eslint-config": "^1.3.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/jest": "^27.0.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.36.1",
"jest": "^29.7.0",
"prettier": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.2.6",
"typescript": "^4.9.5"
},
"dependencies": {
"@formsort/web-embed-api": "^2.10.0"
},
"peerDependencies": {
"react": ">=16.13.0, <19.0.0"
},
"jest": {
"cacheDirectory": "./.jest-cache",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/dist/"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testEnvironment": "jsdom"
}
}