-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
{
"name": "react-propertoolbar",
"version": "0.1.2",
"description": "A proper toolbar component for react",
"main": "index.js",
"scripts": {
"test": "webpack && karma start --single-run --no-auto-watch karma.conf.js",
"watch": "karma start --auto-watch --no-single-run karma.conf.js",
"start": "webpack-dev-server --hot --config webpack.config.example.js",
"build": "babel src/jsx --out-dir lib && webpack && cp -rvf src/css/* css/",
"release": "npm run build && webpack --config webpack.config.min.js",
"build-example": "webpack --config webpack.config.example.dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CBIConsulting/ProperToolbar.git"
},
"keywords": [
"react-component",
"toolbar",
"ui"
],
"author": "cbi",
"license": "MIT",
"bugs": {
"url": "https://github.com/CBIConsulting/ProperToolbar/issues"
},
"homepage": "https://github.com/CBIConsulting/ProperToolbar#readme",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-cli": "^6.5.0",
"compass-mixins": "^0.12.7",
"core-js": "^2.2.1",
"css-loader": "^0.23.1",
"eslint": "^2.5.3",
"eslint-plugin-react": "^4.2.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"jquery": "3.0.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8",
"karma-notification-reporter": "0.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"node-sass": "^3.7.0",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^0.14.7",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"underscore": "^1.8.3"
}
}