-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 874 Bytes
/
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
{
"name": "idx-to-optional-chaining",
"version": "1.1.0",
"description": "JSCodeShift codemod that transforms usage of idx to the draft optional chaining standard.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdlewis/idx-to-optional-chaining.git"
},
"author": "Chris Lewis",
"license": "ISC",
"bugs": {
"url": "https://github.com/cdlewis/idx-to-optional-chaining/issues"
},
"homepage": "https://github.com/cdlewis/idx-to-optional-chaining",
"engine": {
"node": "8.* || >= 10.*"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"idx": "^2.5.3",
"jest": "^24.1.0",
"jscodeshift": "^0.7.0",
"prettier": "^1.19.1"
}
}