-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "app-to-addon-migrator",
"version": "2.2.2",
"description": "An opinionated cli tool to migrate Ember components from app to addons within a Yarn workspace. ",
"main": "index.js",
"bin": {
"atam": "./bin/cli.js",
"ateam": "./bin/wizard.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"test": "qunit tests/*-test.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"deploy": "npm version patch && git push && git push --tags && npm publish",
"deploy-major": "npm version major && git push && git push --tags && npm publish",
"lint": "eslint .",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release"
},
"keywords": [
"ember",
"engines",
"migration",
"cli",
"migrator",
"addons"
],
"author": "Rajasegar Chandran <rajasegar.c@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"ember-template-recast": "^4.1.4",
"fs-extra": "^9.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^7.1.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"walk-sync": "^2.1.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"execa": "^4.0.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"qunit": "^2.10.0",
"semantic-release": "^17.0.7"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}