-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.58 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
97
98
99
{
"name": "sd-plotly",
"version": "1.5.0",
"description": "React Plotly components with Immutable.js for rendering logic",
"main": "./dist/index.js",
"files": [
"dist/",
"src/"
],
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"pandas-js": "^0.2.4",
"plotly.js": "^1.30.1",
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-react-flow-props-to-prop-types": "^0.15.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.55.0",
"flow-remove-types": "^1.2.1",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jsdoc-parse": "^3.0.0",
"jsdoc-to-markdown": "^3.0.0",
"npm-check-updates": "^2.12.1",
"react-docgen": "^2.18.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"scripts": {
"build": "babel src/es6 --out-dir dist --no-comments",
"check_updates": "./node_modules/npm-check-updates/bin/npm-check-updates",
"test": "jest --verbose --runInBand",
"version_patch": "npm version patch",
"_publish": "npm publish"
},
"jest": {
"modulePaths": [
"/shared/vendor/modules"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"roots": [
"src/js"
],
"setupFiles": [
"<rootDir>/src/js/_test-env.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/StratoDem/sd-plotly.git"
},
"keywords": [
"React",
"Plotly",
"Immutable.js",
"graphing",
"visualization"
],
"author": "StratoDem Analytics [email protected]",
"contributors": [
{
"name": "Michael Clawar"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/StratoDem/sd-plotly/issues"
},
"homepage": "https://github.com/StratoDem/sd-plotly#readme"
}