forked from masenius/tableau-react-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "tableau-react-embed",
"version": "1.0.1",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masenius/tableau-react-embed.git"
},
"keywords": [
"tableau",
"react",
"jsx"
],
"author": "David Månsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/masenius/tableau-react-embed/issues"
},
"homepage": "https://github.com/masenius/tableau-react-embed#readme",
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"dependencies": {
"es6-promise": "^4.0.5",
"prop-types": "^15.6.0",
"shallowequal": "^0.2.2",
"tableau-api": "ilyabo/tableau-api",
"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": "^2.5.1",
"jsdom": "^9.8.0",
"react-addons-test-utils": "^15.3.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.6"
}
}