-
Notifications
You must be signed in to change notification settings - Fork 582
/
package.json
96 lines (96 loc) · 3.39 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
96
{
"name": "webdataconnector",
"version": "2.0.0",
"description": "Connect to web data from Tableau.",
"scripts": {
"corsproxy": "export CORSPROXY_PORT=8889 || set CORSPROXY_PORT=8889 && node ./Simulator/utils/corsproxy.js",
"http-server": "export SERVER_PORT=8888 || set SERVER_PORT=8888 && node ./index.js --no-cache",
"bundle": "npm run lint && webpack --watch --config ./webpack.config.js",
"lint": "eslint ./Simulator --ext .js --ext .jsx --cache",
"lint:fix": "eslint ./Simulator --ext .js --ext .jsx --fix --cache",
"preinstall": "npm install --package-lock-only --no-audit --ignore-scripts && npx npm-force-resolutions",
"start": "node node_modules/npm-run-all/bin/npm-run-all --parallel corsproxy http-server",
"start:bundle": "node node_modules/npm-run-all/bin/npm-run-all --parallel corsproxy http-server bundle",
"end-to-end": "node_modules/.bin/mocha --require babel-core/register --recursive ./Simulator/tests/end-to-end",
"unit": "node_modules/.bin/mocha --require babel-core/register --recursive Simulator/tests/unit",
"unit:coverage": "node_modules/.bin/nyc --check-coverage --lines 70 --functions 70 --branch 70 npm run unit",
"unit:coveralls": "node_modules/.bin/nyc --reporter=text-lcov --check-coverage --lines 70 --functions 70 --branch 70 npm run unit | coveralls",
"test": "node node_modules/npm-run-all/bin/npm-run-all end-to-end unit:coverage",
"test:travis": "node node_modules/npm-run-all/bin/npm-run-all unit:coveralls end-to-end"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableau/webdataconnector.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"chromedriver": "^91.0.1",
"coveralls": "^3.1.0",
"enzyme": "^2.3.0",
"escope": "^3.6.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"js-cookie": "^2.1.2",
"jsdom": "^9.3.0",
"mocha": "^5.0.0",
"nyc": "^15.1.0",
"querystring": "^0.2.0",
"react": "15.1.0",
"react-addons-test-utils": "15.1.0",
"react-bootstrap": "^0.29.5",
"react-dom": "15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-actions": "^0.10.0",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.1.2",
"redux-thunk": "^2.1.0",
"selenium-webdriver": "^3.6.0",
"should": "^9.0.2",
"sinon": "^1.17.4",
"underscore": "^1.8.3",
"validate.js": "^0.10.0",
"vis": "^4.16.1",
"webpack": "^1.13.1",
"yargs": "^17.0.1"
},
"dependencies": {
"cors-anywhere": "^0.4.4",
"finalhandler": "^1.1.2",
"npm-run-all": "^4.1.5",
"serve-static": "^1.14.1"
},
"nyc": {
"include": [
"Simulator/actions/*.js",
"Simulator/components/*.jsx",
"Simulator/reducers/*.js",
"Simulator/store/*.js",
"Simulator/utils/*.js"
],
"extension": [
".jsx"
]
},
"resolutions": {
"http-proxy": "^1.18.1",
"css-what": "^5.0.1",
"axios": "^0.21.1",
"node-fetch": "^2.6.1",
"watchpack": "^2.2.0",
"minimist": "^1.2.5",
"braces": "^3.0.2",
"glob-parent": "^6.0.0"
}
}