-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 2.21 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
{
"name": "react-hex",
"version": "0.4.1",
"description": "draw svg hexagonal grid with react",
"main": "lib/index.js",
"scripts": {
"start": "npm run dev",
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --watch",
"dev": "run-p watch storybook",
"test": "run-p test:*",
"test:lint": "eslint {src,test,stories} --fix",
"test:unit": "mocha --require jsdom-global/register --compilers babel-register --recursive test",
"test:storybook": "NODE_ENV=test storyshots",
"prepublish": "run-s test build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/airtoxin/react-hex"
},
"keywords": [
"react",
"component",
"react-component",
"hex",
"hexagon",
"grid",
"svg"
],
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"author": "airtoxin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airtoxin/react-hex/issues"
},
"homepage": "https://github.com/airtoxin/react-hex#readme",
"devDependencies": {
"@kadira/react-storybook-addon-info": "3.3.0",
"@kadira/storybook": "2.21.0",
"@kadira/storyshots": "2.1.0",
"@personare/react-storybook-decorator-github-corner": "0.1.5",
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-es2016": "6.16.0",
"babel-preset-es2017": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.18.0",
"babel-register": "6.18.0",
"enzyme": "2.7.0",
"eslint": "3.12.2",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "4.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.8.0",
"jsdom": "9.9.1",
"jsdom-global": "2.1.1",
"mocha": "3.2.0",
"npm-run-all": "3.1.2",
"react": "15.4.1",
"react-addons-test-utils": "15.4.1",
"react-dom": "15.4.1",
"seedrandom": "2.4.2"
},
"dependencies": {
"babel-runtime": "6.20.0"
}
}