forked from britecharts/britecharts-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.36 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
100
101
102
103
104
105
106
107
108
109
{
"name": "britecharts-react",
"description": "Britecharts-react is a React wrapper for the Britecharts charting library",
"main": "dist/britecharts-react.min.js",
"module": "lib/esm/index.js",
"browser": "dist/britecharts-react.min.js",
"repository": {
"type": "git",
"url": "https://github.com/eventbrite/britecharts-react.git"
},
"homepage": "https://eventbrite.github.io/britecharts-react/",
"bugs": {
"url": "https://github.com/eventbrite/britecharts-react/issues"
},
"keywords": [
"d3",
"react",
"charts",
"library",
"reactjs",
"graphs"
],
"author": "Marcos Iglesias <[email protected]> (http://www.marcosiglesias.com)",
"version": "0.3.32",
"license": "Apache-2.0",
"scripts": {
"start": "webpack-dashboard -- nodemon --watch webpack.config.js --exec \"webpack-dev-server --env development\"",
"prebuild": "rimraf lib && rimraf dist",
"build": "webpack --env production --progress && yarn run build:esm",
"build:esm": "babel-node src/scripts/es/build.js",
"docs": "yarn run styleguide:build",
"lint": "eslint src/ webpack.*.js --cache",
"lint:fix": "eslint src/ webpack.*.js --cache --fix",
"test": "jest",
"test:watch": "jest --watch",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"release": "grunt release:patch",
"release:minor": "grunt release:minor",
"release:major": "grunt release:major"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"child-process-promise": "^2.2.1",
"colors": "^1.1.2",
"copy-webpack-plugin": "^4.3.1",
"core-js": "^2.5.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-15": "^1.0.0",
"eslint": "^3.0.0",
"eslint-config-eventbrite": "^4.1.0",
"eslint-config-eventbrite-react": "^5.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^6.0.0",
"fs": "^0.0.1-security",
"fs-promise": "^2.0.3",
"grunt": "^1.0.1",
"grunt-release": "git://github.com/beevelop/grunt-release",
"grunt-shell": "^2.1.0",
"html-webpack-plugin": "^2.30.1",
"install": "^0.10.1",
"jest": "^22.0.4",
"load-grunt-tasks": "^3.5.2",
"nodemon": "^1.12.1",
"npm": "^5.4.2",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^15",
"react-dev-utils": "^4.0.1",
"react-dom": "^15",
"react-styleguidist": "6.0.33",
"react-test-renderer": "^15",
"rimraf": "^2.6.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dashboard": "1.0.2",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15",
"react-dom": ">=15"
},
"dependencies": {
"britecharts": "2.4.11",
"d3-selection": "^1.1.0"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js"
}
}