forked from paypal/glamorous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) Β· 3.6 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "glamorous",
"version": "0.0.0-semantically-released",
"description": "React component styling solved",
"main": "dist/glamorous.cjs.js",
"jsnext:main": "dist/glamorous.es.js",
"module": "dist/glamorous.es.js",
"typings": "typings/glamorous.d.ts",
"scripts": {
"start": "nps",
"test": "nps test",
"test:ts": "(tsc -p ./tsconfig.json && rimraf test-ts) || rimraf test-ts",
"precommit": "lint-staged && opt --in pre-commit --exec \"npm start validate\""
},
"files": ["dist", "typings"],
"keywords": [
"react",
"css",
"css-in-js",
"cssinjs",
"styled-components",
"glamor",
"jsxstyle"
],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"brcast": "^3.0.0",
"fast-memoize": "^2.2.7",
"html-tag-names": "^1.1.1",
"is-function": "^1.0.1",
"is-plain-object": "^2.0.4",
"react-html-attributes": "^1.3.0",
"svg-tag-names": "^1.1.0"
},
"peerDependencies": {
"glamor": ">=2",
"react": ">=0.14"
},
"devDependencies": {
"@types/react": "^15.0.27",
"all-contributors-cli": "^4.3.0",
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-macros": "^0.5.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"bundlesize": "^0.12.2",
"codegen.macro": "^1.0.0",
"common-tags": "^1.4.0",
"cross-spawn": "^5.1.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.3.0",
"eslint-config-kentcdodds": "^12.4.2",
"glamor": "^2.20.37",
"husky": "^0.14.3",
"jest-cli": "^20.0.4",
"jest-glamor-react": "^3.0.0",
"lint-staged": "^4.0.2",
"nps": "^5.3.1",
"nps-utils": "^1.1.2",
"opt-cli": "^1.5.1",
"prettier-eslint-cli": "^4.1.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"tslint": "^5.4.3",
"tslint-microsoft-contrib": "^5.0.0",
"tsutils": "^1.9.1",
"typescript": "2.4.2"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest",
"kentcdodds/react",
"kentcdodds/prettier"
],
"rules": {
"import/prefer-default-export": 0,
"react/no-unused-prop-types": 0,
"valid-jsdoc": 0,
"func-style": 0
}
},
"lint-staged": {
"*.+(js|json)": ["prettier-eslint --write", "git add"]
},
"jest": {
"testEnvironment": "jsdom",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"snapshotSerializers": ["enzyme-to-json/serializer", "jest-glamor-react"],
"roots": ["src"]
},
"repository": {
"type": "git",
"url": "https://github.com/paypal/glamorous.git"
},
"bugs": {
"url": "https://github.com/paypal/glamorous/issues"
},
"homepage": "https://github.com/paypal/glamorous#readme",
"bundlesize": [
{
"path": "dist/glamorous.umd.tiny.min.js",
"threshold": "3kB"
},
{
"path": "dist/glamorous.es.tiny.js",
"threshold": "5kB"
},
{
"path": "dist/glamorous.cjs.tiny.js",
"threshold": "5kB"
}
]
}