-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.37 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
{
"name": "emotion-flex",
"version": "0.0.0-semantically-released",
"author": "Jan Czizikow <[email protected]> (https://www.janczizikow.com/)",
"description": "Fully customizable responsive flexbox grid system, made with emotion",
"keywords": [
"react",
"grid",
"flexbox",
"emotion",
"styled"
],
"repository": {
"type": "git",
"url": "https://github.com/janczizikow/emotion-flex.git"
},
"bugs": {
"url": "https://github.com/janczizikow/emotion-flex/issues"
},
"homepage": "https://github.com/janczizikow/emotion-flex#readme",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"react": ">=16.3.0"
},
"dependencies": {
"facepaint": "^1.2.1"
},
"scripts": {
"test": "jest",
"test:watch": "yarn test--watch",
"test:coverage": "cross-env CI=1 yarn test --coverage",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"prebuild": "rimraf dist",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "yarn build:types && yarn build:js",
"prepublishOnly": "yarn build",
"watch": "rollup -c -w",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.0",
"@babel/preset-env": "7.4.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.3.3",
"@emotion/babel-plugin": "^11.7.2",
"@emotion/jest": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@types/facepaint": "^1.2.0",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^3.0.2",
"husky": "^2.1.0",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"semantic-release": "^19.0.3",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-react": "^4.0.0",
"typescript": "3.3.3"
},
"lint-staged": {
"**/**.{ts,tsx}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"snapshotSerializers": [
"@emotion/jest/serializer"
]
}
}