-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
114 lines (114 loc) · 3.22 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
110
111
112
113
114
{
"name": "semantic-react",
"version": "0.12.0",
"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": "mocha -r src/app.tests.js src/components/**/*-test.jsx",
"styleguide-server": "styleguidist server",
"styleguide-build": "styleguidist build --production",
"prepublish": "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": {
"@types/react": "*",
"classnames": "^2.2.5",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.5.10",
"react-event-listener": "^0.4.5",
"react-portal": "^3.1.0",
"react-prop-types": "^0.4.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"react-transition-group": "^1.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-enzyme": "^0.5.4",
"@types/enzyme": "^2.5.37",
"@types/mocha": "^2.2.32",
"@types/react-dom": "^0.14.18",
"@types/sinon": "^1.16.31",
"@types/sinon-chai": "^2.7.27",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.2.10",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-loader": "^1.6.0",
"eslint-plugin-react": "^6.4.1",
"estraverse-fb": "^1.3.1",
"express": "^4.14.0",
"glob": "^7.1.1",
"he": "^1.1.0",
"history": "^4.3.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"istanbul-react": "^1.1.0",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jsdom-launcher": "^4.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"loader-utils": "^0.2.16",
"lolex": "^1.5.1",
"mocha": "^3.1.2",
"react": "^15.5.4",
"react-codemirror": "^0.2.6",
"react-docgen": "^2.12.1",
"react-dom": "^15.5.4",
"react-styleguidist": "^4.1.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"react-transition-group": "^1.1.3",
"redbox-react": "^1.3.2",
"sinon": "^2.0.0-pre",
"sinon-chai": "FredyC/sinon-chai#sinon2",
"uglify-js": "^2.7.4",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
}
}