-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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-to-js.macro",
"version": "0.1.0",
"author": "Johan Holmerin <johan@holmer.in>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johanholmerin/css-to-js.macro.git"
},
"engines": {
"node": ">=12"
},
"keywords": [
"css",
"babel-plugin-macros"
],
"dependencies": {
"@babel/types": "^7.9.6",
"postcss": "^8.2.6",
"postcss-js": "^3.0.3"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"babel-jest": "^26.1.0",
"babel-plugin-macros": "^3.0.1",
"babel-plugin-tester": "^10.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1"
},
"scripts": {
"test": "jest",
"lint": "eslint '**/*.js' --fix",
"format": "prettier '**/*.js' --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run format"
]
}
}