-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "@templafy/delivery-connector-library",
"version": "1.0.0",
"description": "Allows external vendors to create custom delivery options for documents created within Templafy. This allows Templafy users to authenticate with, choose a save location in, and save created documents directly to an external system.",
"homepage": "https://www.templafy.com/",
"bugs": "https://github.com/templafy/DeliveryConnectorLibrary/issues",
"repository": "github:templafy/DeliveryConnectorLibrary",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "tsc && cp package.json ./build/package.json || copy package.json build\\package.json",
"start-react-example": "cd ./examples/react && yarn && yarn start",
"start-typescript-example": "cd ./examples/typescript && yarn && yarn start",
"run-react-example": "yarn build && yarn run start-react-example",
"run-typescript-example": "yarn build && yarn run start-typescript-example"
},
"types": "index.d.ts",
"files": [
"."
],
"peerDependencies": {
"react": "^16.9.0"
},
"devDependencies": {
"@testing-library/jest-dom": "4.1.0",
"@testing-library/react": "9.2.0",
"@types/jest": "24.0.12",
"@types/react": "16.9.0",
"cross-env": "6.0.3",
"husky": "4.3.8",
"jest-junit-reporter": "1.1.0",
"react": "16.12.0",
"sass": "1.25.0",
"ts-node": "8.1.0",
"tslib": "1.9.3",
"typescript": "3.9.7"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=10.12.0"
}
}