forked from react-materialize/react-materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.04 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
{
"name": "react-materialize",
"version": "2.6.0",
"description": "Material design components for react",
"main": "./lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"pretest": "npm run lint",
"build": "babel -d lib src",
"lint": "eslint src test",
"fix": "eslint src test --fix",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"{src,test}/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/react-materialize/react-materialize.git"
},
"keywords": [
"material",
"react",
"materializecss",
"react-component"
],
"author": "Isaiah Peng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-materialize/react-materialize/issues"
},
"jest": {
"verbose": true,
"setupFiles": [
"<rootDir>/test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"homepage": "https://github.com/react-materialize/react-materialize",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.3",
"eslint": "^3.4.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-react": "^4.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jsdom": "^11.7.0",
"materialize-css": "^0.100.2",
"prettier": "^1.11.1"
},
"dependencies": {
"classnames": "^2.2.5",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}