-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "react-css-modules.macro",
"description": "Babel macro for binding css modules to styleName attribute",
"version": "0.1.5",
"author": {
"name": "Bohdan Ptyts",
"url": "https://github.com/bohdanbirdie"
},
"main": "dist/react-css-modules.macro.js",
"license": "MIT",
"files": [
"dist/"
],
"keywords": [
"babel",
"babel-macros",
"babel-plugin-macros"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bohdanbirdie/react-css-modules.macro.git"
},
"scripts": {
"test": "jest --coverage",
"format": "prettier --write",
"prepare": "npm run build",
"build": "microbundle -o dist src/{index,bindStyleNameMemo,bindStyleNamePure}.js",
"precommit": "lint-staged"
},
"dependencies": {
"babel-plugin-macros": "^2.6.1",
"memoizee": "^0.4.14"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-tester": "^7.0.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"microbundle": "^0.11.0",
"prettier": "^1.18.2"
},
"jest": {
"testRegex": "__tests__/.*.test.js$"
},
"lint-staged": {
"src/*.{js,md}": [
"prettier --write",
"git add -A"
]
}
}