-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.71 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
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
86
87
88
89
90
91
92
93
94
95
{
"name": "@pactsafe/pactsafe-react-sdk",
"version": "2.14.0",
"description": "Ironclad Clickwrap React SDK - SDK for easy Ironclad Clickwrap implementations leveraging the Ironclad JavaScript Library & API",
"author": "Ironclad",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"homepage": "https://github.com/PactSafe/pactsafe-react-sdk",
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "NODE_OPTIONS=--openssl-legacy-provider nwb serve-react-demo",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage-watch": "jest --coverage --watch",
"lint": "./node_modules/.bin/eslint src/ tests/ demo/src/ --fix",
"release": "./node_modules/.bin/np",
"preversion": "npm test && npm run lint",
"postversion": "git push && git push --tags",
"deploy": "npm run build && gh-pages -d demo/dist"
},
"files": [
"es",
"lib",
"umd"
],
"engines": {
"node": ">=18.18.2"
},
"dependencies": {
"classnames": "^2.3.2",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.8.1",
"react-proptype-conditional-require": "^1.0.4",
"uuid": "^9.0.0"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^11.2.7",
"babel-jest": "^29.0.3",
"babel-plugin-search-and-replace": "^1.1.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"gh-pages": "^4.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jsdom": "^20.0.0",
"np": "^8.0.4",
"nwb": "^0.25.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PactSafe/pactsafe-react-sdk.git"
},
"bugs": {
"url": "https://github.com/PactSafe/pactsafe-react-sdk/issues"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
},
"testEnvironment": "jsdom"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react-component",
"react",
"clickwrap",
"contract",
"browsewrap",
"pactsafe",
"ironclad"
]
}