-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
76 lines (76 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
{
"name": "ember-component-template-colocation-migrator",
"version": "1.2.0",
"description": "A codemod that moves your component .hbs files to be co-located with their .js",
"homepage": "https://github.com/ember-codemods/ember-component-template-colocation-migrator#readme",
"bugs": {
"url": "https://github.com/ember-codemods/ember-component-template-colocation-migrator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-codemods/ember-component-template-colocation-migrator.git"
},
"license": "MIT",
"author": "Gavin Joyce <[email protected]>",
"main": "lib/index.js",
"bin": {
"ember-component-template-colocation-migrator": "./bin/ember-component-template-colocation-migrator"
},
"files": [
"bin/",
"lib/"
],
"scripts": {
"lint": "eslint .",
"test": "mocha test/**/*-test.js"
},
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/parser": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/traverse": "^7.7.4",
"ember-template-recast": "^3.3.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.4",
"jscodeshift": "^0.10.0",
"nopt": "^4.0.1",
"recast": "^0.19.1",
"remove-empty-directories": "^0.0.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"assert-diff": "^2.0.3",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"fixturify": "^1.0.1",
"mocha": "^6.1.1",
"prettier": "^2.0.5",
"release-it": "^13.6.5",
"release-it-lerna-changelog": "^2.3.0"
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}