-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.44 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
{
"name": "styled-style",
"version": "0.6.2",
"description": "css modules like styled-components",
"license": "MIT",
"repository": "akameco/styled-style",
"author": "akameco <[email protected]> (akameco.github.io)",
"engines": {
"node": ">=6"
},
"main": "lib/index.js",
"jsnext:main": "lib/index.esm.js",
"module": "lib/index.esm.js",
"types": "index.d.ts",
"scripts": {
"add-contributor": "all-contributors add",
"fmt": "prettier --write '**/*.{js,json,md}'",
"flow": "flow",
"lint": "eslint --fix .",
"test": "jest",
"prepare": "yarn build && yarn build:flow",
"build": "yarn rollup && yarn build:flow",
"rollup": "rollup -c",
"build:lib": "babel src -d lib --ignore '**/*.test.js'",
"build:flow": "flow-copy-source -v -i '*.test.js' src lib",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --ci --runInBand",
"test:ci": "yarn flow && yarn lint && yarn test:cov"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
]
},
"files": [
"lib",
"index.d.ts"
],
"keywords": [
"react",
"styled-components",
"styled",
"css",
"css-moduels",
"css-module"
],
"dependencies": {
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@types/react": "^16.9.23",
"all-contributors-cli": "^6.14.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "6.8.0",
"eslint-config-precure": "^5.3.1",
"flow-bin": "^0.108.0",
"flow-copy-source": "^2.0.9",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"peerDependencies": {
"react": ">=15"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"<rootDir>/jestSetup.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/lib"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}