-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 KB
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
{
"name": "ember-memory-leaks-codemod",
"version": "1.3.6",
"scripts": {
"test": "codemod-cli test --coverage",
"update-docs": "codemod-cli update-docs",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"deploy": "npm version patch && git push && git push --tags && npm publish",
"deploy-feat": "npm version minor && git push && git push --tags && npm publish"
},
"bin": "./bin/cli.js",
"keywords": [
"codemod-cli",
"ember-addon",
"codemods",
"memory-leaks",
"ember"
],
"author": "Rajasegar Chandran <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-codemods/ember-memory-leaks-codemod/issues"
},
"homepage": "https://github.com/ember-codemods/ember-memory-leaks-codemod#readme",
"dependencies": {
"codemod-cli": "^0.2.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-codemods/ember-memory-leaks-codemod.git"
},
"devDependencies": {
"coveralls": "^3.0.4",
"jest": "^24.8.0"
},
"jest": {
"testEnvironment": "node"
}
}