forked from ember-codemods/ember-codemods-telemetry-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "ember-codemods-telemetry-helpers",
"version": "2.0.0",
"private": false,
"description": "Helpers for gathering app telemetry for codemods.",
"repository": "https://github.com/ember-codemods/ember-codemods-telemetry-helpers",
"license": "MIT",
"author": "",
"contributors": [
"Ryan Mark <[email protected]>"
],
"main": "lib/index.js",
"scripts": {
"lint:js": "eslint .",
"test": "jest . --verbose --no-watchman --runInBand --forceExit"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"fs-extra": "^8.1.0",
"git-repo-info": "^2.1.0",
"puppeteer": "^5.1.0",
"sync-disk-cache": "^1.3.3",
"walk-sync": "^2.0.2"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"execa": "^2.1.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"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"
}
}
}