-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 1011 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
33
34
35
{
"name": "ember-3x-codemods",
"version": "1.12.8",
"scripts": {
"test": "codemod-cli test --coverage",
"update-docs": "codemod-cli update-docs",
"deploy": "npm version patch && git push && git push --tags && npm publish",
"deploy:feat": "npm version minor && git push && git push --tags && npm publish",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"bin": "./bin/cli.js",
"keywords": [
"codemod-cli"
],
"author": "Rajasegar Chandran <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-codemods/ember-3x-codemods/issues"
},
"homepage": "https://github.com/ember-codemods/ember-3x-codemods#readme",
"dependencies": {
"codemod-cli": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-codemods/ember-3x-codemods.git"
},
"devDependencies": {
"coveralls": "^3.0.6",
"jest": "^24.9.0"
},
"jest": {
"testEnvironment": "node"
}
}