-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 1.91 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-react-pug-classnames",
"version": "0.3.1",
"description": "[react-pug] Transform className property using BEM classnames-like function",
"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-react-pug-classnames"
},
"files": [
"index.js",
"prefixedClassnames.js",
"classcat.js",
"README.md"
],
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/template": "^7.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-tester": "^5.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"lint-staged": "^7.0.0",
"npmpub": "^3.1.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": {
"coverageDirectory": "./.coverage/",
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
}
}
}