-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "ember-test-helpers-codemod",
"version": "0.3.1",
"description": "Codemod to transform your jQuery based ember tests to use @ember/test-helpers",
"keywords": [
"codemod-cli"
],
"repository": "https://github.com/simonihmig/ember-test-helpers-codemod",
"license": "MIT",
"author": "Simon Ihmig <[email protected]>",
"main": "index.js",
"bin": "./bin/cli.js",
"scripts": {
"lint": "eslint --cache .",
"test": "codemod-cli test",
"test:coverage": "codemod-cli test --coverage",
"update-docs": "codemod-cli update-docs",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"codemod-cli": "^2.1.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^24.9.0",
"prettier": "^2.2.1",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0"
},
"engines": {
"node": "10.* || >= 12"
},
"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"
}
}
}