forked from rakannimer/react-google-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.52 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
{
"name": "react-google-charts",
"version": "1.5.5",
"type": "react-component",
"description": "react-google-charts React component",
"main": "lib/index.js",
"scripts": {
"deploy": "gh-pages-deploy",
"build": "mv .babelrc .babelrc.backup && nwb build && mv .babelrc.backup .babelrc",
"clean": "nwb clean",
"start": "nwb serve",
"lint": "./node_modules/.bin/eslint src/*",
"test-node-env": "./node_modules/.bin/jest --env node __tests__/Chart.test.js --verbose",
"test-jsdom-env": "./node_modules/.bin/jest --env jsdom __tests__/Chart.test.js --verbose",
"test": "npm run lint && npm run test-node-env && npm run test-jsdom-env",
"gen:changelog": "github-changes -o RakanNimer -r react-google-charts"
},
"dependencies": {
"debug": "^2.2.0",
"loadjs": "^3.3.1",
"prop-types": "^15.5.8",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"peerDependencies": {
"react": ">= 0.13.x",
"react-dom": ">= 0.13.x"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"dotenv": "^2.0.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"github-changes": "^1.0.4",
"gulp-react-docs": "^0.1.2",
"jest": "^19.0.2",
"jsdoc": "^3.4.0",
"jsdom": "^9.5.0",
"nwb": "^0.15.6",
"object-assign": "^4.1.0",
"pre-commit": "^1.2.2",
"react-router": "^2.4.1",
"react-test-renderer": "^15.3.2",
"yargs": "^5.0.0"
},
"gh-pages-deploy": {
"staticpath": "demo/dist/"
},
"bugs": {
"url": "https://github.com/rakannimer/react-google-charts/issues"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/FileStub.js",
"^.+\\.css$": "<rootDir>/config/jest/CSSStub.js"
},
"testPathIgnorePatterns": [
"<rootDir>/(build|docs|node_modules)/"
],
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx)$"
},
"author": "Rakan Nimer",
"homepage": "https://rakannimer.github.io/react-google-charts/",
"license": "MIT",
"repository": "https://github.com/RakanNimer/react-google-charts",
"keywords": [
"react",
"google",
"charts"
]
}