-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·46 lines (46 loc) · 1.07 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
{
"name": "async-await-codemod",
"version": "1.0.0",
"description": "async-await codemod scripts for JSCodeshift",
"repository": {
"url": "[email protected]:sgilroy/async-await-codemod.git",
"type": "git"
},
"author": "Scott Gilroy <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^25.0.0",
"prettier": "^1.13.4"
},
"scripts": {
"test": "npm run lint && jest",
"fix": "npm run eslint -- --fix & npm run prettier -- --write & wait",
"lint": "npm run eslint & wait",
"prettier": "prettier -l README.md package.json",
"eslint": "eslint ."
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"env": {
"node": true,
"es6": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2017
}
},
"dependencies": {
"jscodeshift": "^0.6.4"
}
}