-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "ember-qunit-codemod",
"version": "1.2.2",
"description": "codemod script for ember-qunit",
"keywords": [
"codemod",
"codemod-cli",
"qunit"
],
"homepage": "https://github.com/ember-codemods/ember-qunit-codemod#readme",
"bugs": {
"url": "https://github.com/ember-codemods/ember-qunit-codemod/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-codemods/ember-qunit-codemod.git"
},
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"bin": "./bin/cli.js",
"scripts": {
"lint": "eslint .",
"test": "codemod-cli test",
"update-docs": "codemod-cli update-docs"
},
"dependencies": {
"codemod-cli": "^0.2.1"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^24.1.0",
"prettier": "^1.13.5",
"release-it": "^12.2.1",
"release-it-lerna-changelog": "^1.0.3"
},
"engines": {
"node": ">=6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
}
}