-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "tableau-react",
"version": "2.2.0",
"description": "React component for rendering tableau reports using tableau javascript API.",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "mocha test/.setup.js test/**/*-test.js",
"build": "rimraf dist/ && babel src/ --out-dir dist",
"prepublish": "npm run build",
"live-server": "live-server",
"bundle": "./node_modules/.bin/esbuild example/main.jsx --bundle --outfile=example/main.bundle.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coopermaruyama/tableau-react.git"
},
"keywords": [
"tableau",
"react",
"jsx"
],
"author": "Cooper Maruyama",
"license": "MIT",
"bugs": {
"url": "https://github.com/coopermaruyama/tableau-react/issues"
},
"homepage": "https://github.com/coopermaruyama/tableau-react#readme",
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"dependencies": {
"es6-promise": "^4.2.8",
"prop-types": "^15.7.2",
"shallowequal": "^0.2.2",
"url": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"esbuild": "^0.14.30",
"jsdom": "^15.2.1",
"live-server": "^1.2.1",
"mocha": "^5.2.0",
"react": "^16.12.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.12.0",
"rimraf": "^2.7.1",
"sinon": "^1.17.6"
}
}