-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.46 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@themgoncalves/super-query",
"version": "3.0.0",
"description": "🎠 A super media-query for styled-component. Intuitive and easy of use.",
"main": "lib/index.js",
"scripts": {
"clean:build": "rm -rf lib/",
"start": "npm run build && webpack-dev-server --mode development --progress --profile --colors",
"build": "npm run clean:build && babel src -d lib",
"build:demo": "NODE_ENV=production webpack --mode production --progress --profile --colors",
"lint": "eslint --ext js --ext jsx src || exit 0",
"lint:fix": "eslint --ext js --ext jsx src --fix|| exit 0",
"test": "npm run build && jest lib/",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:report": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prepublish": "yarn build",
"doc:gen": "jsdoc -c jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md -r ."
},
"repository": {
"type": "git",
"url": "https://github.com/themgoncalves/super-query.git"
},
"keywords": [
"styled-component",
"media-query",
"screen",
"orientation",
"responsiviness",
"mobile-first"
],
"author": "Marcos Gonçalves <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/themgoncalves/super-query/issues",
"engines": {
"node": ">=4.2.4"
},
"peerDependencies": {
"styled-components": ">= 2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0-beta.6",
"babel-plugin-module-resolver": "^3.1.1",
"coveralls": "^3.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-alias": "^1.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"ink-docstrap": "^1.3.2",
"jest": "^23.6.0",
"jest-styled-components": "^6.3.1",
"jsdoc": "^3.5.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"regenerator-runtime": "^0.13.1",
"styled-components": "^4.1.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"jest": {
"setupFiles": [
"<rootDir>/configurations/jest/setup.env.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/configurations/jest/setup.framework.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleDirectories": [
"node_modules",
"src"
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.{js,jsx}",
"!**/node_modules/**",
"!configurations/**",
"!**/coverage/**"
],
"coverageReporters": [
"json",
"lcov",
"text-summary",
"html"
]
}
}