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
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 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
68
69
70
71
72
73
74
{
"name": "react-materialize",
"version": "0.16.4",
"description": "Material design components for react",
"main": "./lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"test": "karma start --single-run",
"pretest": "npm run lint",
"watch": "karma start",
"build": "babel -d lib src",
"lint": "eslint src || true",
"fix": "eslint src --fix",
"release": "npm run build && npm publish"
},
"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": "^6.1.2",
"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.5.0-1",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"es5-shim": "^4.2.0",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-react": "^4.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"karma": "^1.2.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.3",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"lolex": "^1.4.0",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.3.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.1"
},
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0",
"classnames": "^2.2.5"
}
}