-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "preact-codemod",
"version": "0.1.1",
"description": "Transform your React code to Preact",
"main": "transform.js",
"scripts": {
"fmt": "npm run fmt:js && npm run fmt:md",
"fmt:js": "prettier --write '{*.js,*.json,{__testfixtures__,__tests__,transforms}/**/*.js{,x}}'",
"fmt:md": "prettier --parser markdown --write '*.md'",
"precommit": "lint-staged",
"test": "jest"
},
"author": "Vu Tran <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:vutran/preact-codemod.git"
},
"homepage": "https://github.com/vutran/preact-codemod",
"bugs": {
"web": "https://github.com/vutran/preact-codemod/issues"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"dependencies": {
"jscodeshift": "^0.4.0"
},
"lint-staged": {
"{*.js,{src,__tests__,typings}/**/*.ts{,x}}": [
"prettier --write",
"git add"
]
}
}