forked from hallister/semantic-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.12 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": "semantic-react",
"version": "0.0.2",
"description": "React components for Semantic UI.",
"main": "./lib",
"files": [
"dist",
"lib",
"src",
"radium.js",
"radium.d.ts",
"index.d.ts",
"typings.json",
".babelrc"
],
"scripts": {
"lib": "babel --source-maps --ignore=__tests__ src/components/ -d lib/",
"test": "karma start --single-run --no-auto-watch karma.config.js",
"test:watch": "karma start --auto-watch --no-single-run karma.config.js",
"styleguide-server": "styleguidist server",
"styleguide-build": "styleguidist build --production",
"postinstall": "npm run lib"
},
"typings": "./index.d.ts",
"keywords": [
"react",
"semantic",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/hallister/semantic-react.git"
},
"author": "Justin Hall <justin@hallister.me>",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.2.7",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"classnames": "^2.2.5",
"lodash.throttle": "^4.0.1",
"raf": "^3.2.0",
"react-addons-shallow-compare": "15.1.0",
"react-event-listener": "^0.2.1",
"react-measure": "^0.3.5",
"react-motion": "^0.4.4",
"react-motion-ui-pack": "^0.9.0",
"react-portal": "3.0.0",
"react-prop-types": "^0.3.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-react-hmre": "^1.1.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"enzyme": "^2.3.0",
"eslint": "^2.13.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.2.2",
"estraverse-fb": "^1.3.1",
"express": "^4.14.0",
"glob": "^7.0.5",
"he": "^1.1.0",
"history": "^3.0.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.4",
"istanbul-react": "^1.1.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-coverage": "^1.0.0",
"karma-jsdom-launcher": "^3.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lolex": "^1.5.0",
"mocha": "^2.5.3",
"mutationobserver-shim": "^0.3.1",
"react": "15.1.0",
"react-addons-test-utils": "15.1.0",
"react-codemirror": "^0.2.6",
"react-docgen": "^2.9.0",
"react-dom": "15.1.0",
"react-router": "^2.4.1",
"react-styleguidist": "^2.3.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.9",
"sinon": "^2.0.0-pre",
"sinon-chai": "FredyC/sinon-chai#sinon2",
"uglify-js": "^2.6.3",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}