forked from yldio/normalized-styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.34 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
75
76
77
78
79
80
{
"name": "normalized-styled-components",
"version": "1.0.11",
"license": "MPL-2.0",
"description": "normalize.css with a styled-components mindset",
"keywords": [
"normalizations",
"style",
"css",
"react",
"css",
"css-in-js",
"styled-components"
],
"repository": "github:yldio/normalized-styled-components",
"main": "dist/normalized-styled-components.umd.js",
"jsnext:main": "dist/normalized-styled-components.es.js",
"module": "dist/normalized-styled-components.es.js",
"entry": "src/index.js",
"scripts": {
"lint:css": "stylelint src/*.js",
"lint:js": "eslint . --fix",
"lint": "redrun -s lint:*",
"test": "bup && NODE_ENV=test jest --coverage",
"build": "bup",
"prepublish": "redrun build"
},
"dependencies": {
"remcalc": "^1.0.8"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.2.0",
"babel-preset-react-app": "^3.0.2",
"bup": "^1.0.9",
"chalk": "^2.1.0",
"eslint": "^4.7.1",
"eslint-config-joyent-portal": "^3.0.0",
"eslint-config-prettier": "^2.5.0",
"eslint-config-react-app": "^2.0.0",
"eslint-config-xo-space": "^0.16.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.3.0",
"jest": "^21.1.0",
"jest-diff": "^21.1.0",
"jest-junit": "^3.0.0",
"jest-matcher-utils": "^21.1.0",
"jest-snapshot": "^21.1.0",
"jest-styled-components": "^4.6.0",
"react": "^15.6.1",
"react-scripts": "^1.0.13",
"react-test-renderer": "^15.6.1",
"redrun": "^5.9.17",
"strip-ansi": "^4.0.0",
"styled-components": "^2.1.2",
"stylelint": "^8.1.1",
"stylelint-config-joyent-portal": "^1.0.2"
},
"peerDependencies": {
"react": "*",
"styled-components": "*"
},
"jest": {
"testEnvironment": "node",
"testRegex": "test/index.js",
"setupFiles": [
"<rootDir>/node_modules/react-scripts/config/polyfills.js"
],
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/react-scripts/config/jest/babelTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/node_modules/react-scripts/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"rootDir": "."
}
}