forked from coopermaruyama/tableau-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "tableau-react",
"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/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": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"dependencies": {
"es6-promise": "^4.0.5",
"shallowequal": "^0.2.2",
"url": "^0.11.0",
"tableau-api": "git://github.com/ilyabo/tableau-api"
},
"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"
}
}