-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.86 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
{
"name": "component-horizontal-stacked-bar",
"version": "2.0.1",
"description": "A horizontal stacked bar component created with React and d3",
"main": "dist/index.js",
"jsnext:main": "dist/index.es",
"entry": "src/index.js",
"directories": {
"src": "src/**/*",
"test": "test/**/*"
},
"scripts": {
"prepublish": "npm run build",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "standard $npm_package_directories_src | snazzy",
"test:unit": "ava $npm_package_directories_test",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebinsua/component-horizontal-stacked-bar.git"
},
"keywords": [
"horizontal",
"stacked",
"bar",
"chart",
"d3",
"react",
"component"
],
"author": "Seb Insua <me@sebinsua.com>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/sebinsua/component-horizontal-stacked-bar/issues"
},
"homepage": "https://github.com/sebinsua/component-horizontal-stacked-bar#readme",
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"standard": {
"parser": "babel-eslint"
},
"peerDependencies": {
"react": "^15.2.1"
},
"dependencies": {
"d3-scale": "^1.0.1",
"d3-selection": "^1.0.0",
"d3-shape": "^1.0.0",
"react-faux-dom": "^2.7.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babelrc-rollup": "^2.0.0",
"camelcase": "^3.0.0",
"enzyme": "^2.4.1",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"rollup": "^0.34.1",
"rollup-plugin-babel": "^2.6.1",
"snazzy": "^4.0.0",
"standard": "^7.1.2"
}
}