-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.35 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
{
"name": "react-storybook-addon-intl",
"version": "0.1.0",
"description": "React Storybook i18n addon",
"main": "./lib/index.js",
"scripts": {
"test": "karma start",
"posttest": "npm run lint",
"lint": "eslint -c .eslintrc src",
"tdd": "karma start --autoWatch=true --singleRun=false",
"relint": "esw ./src -w --parser babel-eslint",
"dev": "concurrently \"npm run tdd\" \"npm run relint\"",
"clean": "rimraf lib coverage",
"build": "babel src --ignore \"*-spec.js\" --out-dir lib",
"prepublish": "npm run clean && npm run build",
"storybook": "start-storybook -p 9001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tarabyte/react-storybook-addon-intl.git"
},
"keywords": [
"react",
"storybook",
"intl",
"i18n",
"addon"
],
"author": "Yury Tarabanko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tarabyte/react-storybook-addon-intl/issues"
},
"homepage": "https://github.com/Tarabyte/react-storybook-addon-intl#readme",
"files": [
"src",
"lib"
],
"devDependencies": {
"@kadira/storybook": "^1.35.1",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"concurrently": "^2.1.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"eslint-watch": "^2.1.11",
"isparta-loader": "^2.0.0",
"karma": "^1.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-intl": "^2.1.3",
"rimraf": "^2.5.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"@kadira/storybook": "^1.35.1",
"react": "^15.1.0",
"react-intl": "^2.1.3"
}
}