-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "ember-computed-getter-codemod",
"version": "1.4.0",
"author": {
"name": "Alon Bukai",
"email": "[email protected]",
"url": "https://github.com/alonski"
},
"contributors": [
{
"name": "Robert Jackson",
"email": "[email protected]",
"url": "https://github.com/rwjblue"
},
{"name": "William Henry", "url": "https://github.com/mistahenry"}
],
"license": "MIT",
"scripts": {
"test": "codemod-cli test && yarn lint:js",
"update-docs": "codemod-cli update-docs",
"lint:js": "eslint transforms",
"lint:fix": "yarn lint:js --fix"
},
"bin": "./bin/cli.js",
"keywords": [
"codemod-cli"
],
"dependencies": {
"codemod-cli": "^0.2.7"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.15.2",
"jest": "^23.1.0"
},
"jest": {
"testEnvironment": "node"
},
"repository": {"type": "git", "url": "https://github.com/Alonski/ember-computed-getter-codemod"}
}