-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.68 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.68 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
{
"name": "stream-connect-sdk",
"version": "0.7.5",
"description": "A JavaScript SDK implementing TPAStream's Connect Platform",
"scripts": {
"build": "webpack --config webpack.prod-sdk.js --mode=production",
"format": "eslint --fix assets && prettier --write \"assets/*/*/**\"",
"test:lint": "eslint assets && prettier --list-different \"assets/*/*/**\"",
"test": "jest assets/tests/ --config=jest.config.js"
},
"repository": {
"type": "git",
"url": "git@github.com:TPAStream/stream-connect-js-sdk.git"
},
"author": "TPAStreamOrg",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"brfs": "^2.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dompurify": "^2.4.0",
"es5-shim": "^4.5.13",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^26.6.3",
"marked": "^4.1.0",
"prettier": "^1.18.2",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"transform-loader": "^0.2.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.6",
"axios": "^0.21.1",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"query-string": "^6.6.0",
"react": "^16.11.0",
"react-dom": "^16.8.6",
"react-highlight-words": "^0.16.0",
"react-jsonschema-form": "^1.6.0",
"react-popup": "^0.10.0",
"react-select": "^3.0.4",
"regenerator-runtime": "^0.13.7"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"bugs": {
"url": "https://github.com/TPAStream/stream-connect-js-sdk/issues"
},
"homepage": "https://github.com/TPAStream/stream-connect-js-sdk#readme",
"main": "sdk.js",
"keywords": [
"sdk"
],
"license": "ISC"
}