-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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
{
"name": "react-floating-label-input",
"description": "A floating label input component for React",
"keywords": "floating label input field material ui",
"version": "4.3.3",
"main": "dist/react-floating-label-input.cjs.js",
"module": "dist/react-floating-label-input.esm.js",
"browser": "dist/react-floating-label-input.umd.js",
"style": "dist/react-floating-label-input.css",
"author": "Cymen Vig <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cymen/react-floating-label-input.git"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/.enzyme.js",
"transform": {
".*": "<rootDir>/node_modules/jest-css-modules"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.{js}",
"!src/**/*.stories.{js}"
],
"coverageThreshold": {
"global": {
"statements": 55,
"branches": 45,
"functions": 50,
"lines": 60
}
}
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0",
"styled-components": "^4.0.0 || ^5.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/react": "^5.0.11",
"@storybook/storybook-deployer": "^2.8.1",
"autoprefixer": "^9.5.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^24.8.0",
"jest-css-modules": "^2.0.0",
"node-sass": "^4.12.0",
"prettier": "^1.17.1",
"raf": "^3.4.1",
"rollup": "^1.12.5",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"sass-loader": "^7.1.0",
"styled-components": "^4.1.2"
},
"scripts": {
"build": "rollup -c",
"build-storybook": "build-storybook",
"coverage": "jest test --coverage",
"deploy-storybook": "storybook-to-ghpages",
"dev": "rollup -c -w",
"lint": "eslint src",
"pretest": "npm run build",
"storybook": "start-storybook -p 6006",
"test": "jest test"
},
"files": [
"dist"
]
}