forked from Semantic-Org/Semantic-UI-React
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.3 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "semantic-ui-react",
"version": "0.61.4",
"description": "The official Semantic-UI-React integration.",
"main": "dist/commonjs/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"docs": "gulp docs",
"build": "npm run build:commonjs && npm run build:umd && npm run build:docs",
"prebuild:commonjs": "rimraf dist/commonjs",
"build:commonjs": "babel src -d dist/commonjs",
"prebuild:docs": "npm run build:docs-toc",
"build:dll": "gulp dll",
"build:docs": "gulp build:docs",
"build:umd": "gulp umd",
"build:docs-toc": "doctoc README.md ./.github/CONTRIBUTING.md --github --maxlevel 4",
"build:docs-cname": "echo react.semantic-ui.com > docs/build/CNAME",
"predeploy:docs": "cross-env NODE_ENV=production npm run build:docs && npm run build:docs-cname",
"deploy:docs": "gh-pages -d docs/build -m 'deploy docs [ci skip]'",
"lint": "cross-env NODE_ENV=production eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "watch 'npm run lint --silent' docs gulp src test",
"prerelease": "npm run lint && npm test && cross-env NODE_ENV=production npm run build",
"release:major": "npm run prerelease && ta-script npm/release.sh major",
"release:minor": "npm run prerelease && ta-script npm/release.sh minor",
"release:patch": "npm run prerelease && ta-script npm/release.sh patch",
"start": "npm run docs",
"start:local-modules": "npm run docs -- --local-modules",
"pretest": "npm run build:dll",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "npm run test --silent -- --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/Semantic-Org/Semantic-UI-React.git"
},
"author": "Technology Advice <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Semantic-Org/Semantic-UI-React/issues"
},
"homepage": "https://github.com/Semantic-Org/Semantic-UI-React#readme",
"dependencies": {
"classnames": "^2.1.5",
"debug": "^2.3.2",
"lodash": "^4.17.2"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.8",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-lodash": "^3.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-standalone": "^6.19.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"connect-history-api-fallback": "^1.2.0",
"copy-to-clipboard": "^3.0.5",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"del": "^2.2.2",
"dirty-chai": "^1.2.2",
"doctoc": "^1.2.0",
"doctrine": "^2.0.0",
"empty": "^0.10.1",
"enzyme": "^2.6.0",
"eslint-config-ta": "^5.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"express": "^4.13.4",
"faker": "^3.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.12.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-html-replace": "^1.6.2",
"gulp-load-plugins": "^1.2.2",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.6",
"html-webpack-plugin": "^2.24.0",
"imports-loader": "^0.6.4",
"js-beautify": "^1.6.4",
"json-loader": "^0.5.3",
"karma": "^1.3.0",
"karma-cli": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-phantomjs-shim": "^1.4.0",
"karma-webpack-with-fast-source-maps": "^1.9.2",
"mocha": "^3.1.2",
"node-sass": "^3.12.5",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"react": "15.4.0",
"react-ace": "^4.1.0",
"react-addons-test-utils": "15.4.0",
"react-docgen": "^2.12.0",
"react-document-title": "^2.0.2",
"react-dom": "15.4.0",
"react-hot-loader": "^1.3.0",
"react-router": "^3.0.0",
"require-dir": "^0.3.0",
"rimraf": "^2.5.2",
"sass-loader": "^4.0.2",
"semantic-ui-css": "^2.2.2",
"simulant": "^0.2.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"ta-scripts": "^2.5.2",
"through2": "^2.0.0",
"watch": "^1.0.1",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.13.2",
"yargs": "^6.4.0"
},
"peerDependencies": {
"react": ">=0.14.0 <= 15",
"react-dom": ">=0.14.0 <= 15"
}
}