forked from paypal/glamorous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.72 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
{
"name": "glamorous",
"version": "0.0.0-semantically-released",
"description": "React component styling solved",
"main": "dist/glamorous.cjs.js",
"jsnext:main": "dist/glamorous.esm.js",
"module": "dist/glamorous.esm.js",
"typings": "typings/glamorous.d.ts",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"prebuild": "rimraf dist preact",
"build": "npm-run-all build:*",
"build:main": "kcd-scripts build --bundle --p-react --no-clean",
"build:tiny":
"npm run build:main -- --no-package-json --environment BUILD_TINY",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:update": "npm run test:cover -s -- --updateSnapshot",
"test:build": "kcd-scripts test --config other/jest.config.js --no-watch",
"build-and-test": "npm run build -s && npm run test:build -s",
"validate": "kcd-scripts validate lint,build-and-test,test:cover",
"precommit": "kcd-scripts precommit"
},
"files": ["dist", "typings", "preact"],
"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"
},
"devDependencies": {
"@types/react": "^16.0.33",
"codegen.macro": "^1.0.0",
"cross-spawn": "^5.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"glamor": "^2.20.37",
"jest-glamor-react": "^3.2.2",
"kcd-scripts": "^0.31.1",
"npm-run-all": "^4.1.2",
"preact": "^8.2.7",
"preval.macro": "^1.0.2",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.0.0",
"tsutils": "^2.15.0",
"typescript": "^2.6.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"import/prefer-default-export": "off",
"react/no-unused-prop-types": "off",
"valid-jsdoc": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"typings"
],
"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"
}