-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
93 lines (93 loc) · 2.22 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ember-try",
"version": "3.0.0",
"description": "An ember-cli addon to test against multiple dependencies, such as ember and ember-data.",
"keywords": [
"ember-addon",
"testing"
],
"homepage": "https://github.com/ember-cli/ember-try#readme",
"bugs": {
"url": "https://github.com/ember-cli/ember-try/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/ember-try.git"
},
"license": "MIT",
"author": "Katie Gengler",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"lint": "eslint .",
"node-test": "mocha test/**/*.js",
"node-test-with-coverage": "nyc --reporter lcov npm run-script node-test && node_modules/.bin/codecov",
"start": "ember serve",
"test": "npm run-script lint && npm run-script node-test"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.0",
"core-object": "^3.1.5",
"debug": "^4.3.2",
"ember-try-config": "^4.0.0",
"execa": "^4.1.0",
"fs-extra": "^6.0.1",
"resolve": "^1.20.0",
"rimraf": "^3.0.2",
"semver": "^7.5.4",
"temp-dir": "^2.0.0",
"walk-sync": "^2.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.3",
"ember-cli": "~3.22.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"glob": "^7.2.0",
"json": "^10.0.0",
"mocha": "^8.2.1",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"release-it-lerna-changelog": "^3.1.0",
"rsvp": "^4.7.0",
"sinon": "^15.2.0",
"tmp-sync": "^1.1.0"
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}