forked from react-materialize/react-materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.73 KB
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
{
"name": "react-materialize",
"version": "0.14.0-beta3",
"description": "Material design components for react",
"main": "./lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"test": "npm run lint && karma start --single-run",
"watch": "karma start",
"build": "babel -d lib src",
"lint": "eslint src",
"fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/react-materialize/react-materialize.git"
},
"keywords": [
"material",
"react",
"materializecss",
"react-component"
],
"author": "Isaiah Peng <issaria@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-materialize/react-materialize/issues"
},
"homepage": "https://github.com/react-materialize/react-materialize",
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.1.19",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"es5-shim": "^4.2.0",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"karma": "^0.13.15",
"karma-babel-preprocessor": "^6.0.1",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon-chai": "^1.1.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"react": ">=0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": ">=0.14.0",
"webpack": "^1.12.6"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"dependencies": {
"classnames": "^2.1.3"
}
}