-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "react-indie",
"description": "An independent react Component that holds all its logic inside",
"main": "lib/index.js",
"scripts": {
"test": "ava -v",
"build": "npm run clean && babel src -d lib",
"clean": "rimraf lib",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"storybook": "start-storybook -p 9001"
},
"author": "gavriguy",
"repository": {
"type": "git",
"url": "https://github.com/gavriguy/react-indie.git"
},
"license": "MIT",
"keywords": [
"react",
"react-component"
],
"dependencies": {
"bluebird": "^3.0.0",
"lodash": "^4.0.0"
},
"devDependencies": {
"@kadira/storybook": "1.13.0",
"ava": "0.14.0",
"axios": "0.9.1",
"babel": "6.5.2",
"babel-cli": "6.7.5",
"babel-loader": "6.2.4",
"babel-plugin-syntax-decorators": "6.5.0",
"babel-plugin-transform-decorators": "6.6.5",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-resolver": "0.0.18",
"enzyme": "2.2.0",
"eslint": "2.7.0",
"eslint-config-airbnb": "7.0.0",
"eslint-plugin-jsx-a11y": "0.6.2",
"eslint-plugin-react": "4.3.0",
"jsdom": "8.3.1",
"material-ui": "0.14.4",
"react": "15.0.1",
"react-addons-test-utils": "15.0.1",
"react-dom": "15.0.1",
"react-resolver": "3.0.1",
"rimraf": "2.5.2",
"semantic-release": "4.3.5",
"webpack": "1.12.15",
"webpack-dev-server": "1.14.1"
},
"ava": {
"failFast": true,
"files": [
"./test/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}