-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 1.96 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
{
"name": "babel-plugin-cssta-stylename",
"version": "0.2.4",
"description": "Transform css imports into cssta template components",
"keywords": [
"babel",
"babel-plugin",
"pug",
"classname",
"classnames",
"stylename",
"style",
"react",
"react-native",
"react-native-web",
"BEM"
],
"main": "index.js",
"scripts": {
"release": "npmpub",
"test": "jest",
"lint": "eslint ."
},
"author": "Pavel Zhukov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dmapper/babel-plugin-cssta-stylename"
},
"files": [
"index.js",
"utils.js",
"transformer.js",
"preprocessors.js",
"README.md"
],
"dependencies": {
"@dmapper/stylus-hash-plugin": "0.0.1",
"@startupjs/postcss-rem-to-pixel": "^1004.1.2",
"poststylus": "^1.0.0",
"stylus": ">=0.54.5"
},
"peerDependencies": {
"babel-plugin-cssta": "*"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/template": "^7.8.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"babel-plugin-tester": "^8.0.1",
"coveralls": "^3.0.0",
"css": "^2.2.4",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"lint-staged": "^10.0.3",
"npmpub": "^5.0.0",
"prettier": "^1.10.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "standard",
"env": {
"jest": true
}
},
"jest": {
"testRegex": "/__tests__/.*\\.spec.js?$"
}
}