-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "css-in-js-media",
"version": "2.0.1",
"description": "easy code with css-in-js with mediaquery via css-in-js-media",
"keywords": [
"emotion.js",
"emotion",
"styled-component",
"styled-components",
"css-in-js",
"include-media"
],
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "rollup -c",
"lint": "eslint . --ext .ts"
},
"author": "ideveloper2 <zx6658@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Brew-Brew/css-in-js-media.git"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.12.17",
"@rollup/plugin-babel": "^5.1.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.2.5",
"jest": "^24.8.0",
"prettier": "^2.2.1",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.3"
},
"dependencies": {
"rollup": "^2.0.6"
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
}
}