-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
96 lines (96 loc) · 2.5 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
94
95
96
{
"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": {
"format": "prettier . --cache --write",
"lint": "concurrently --group --prefix-colors auto --timings \"pnpm:lint:*(!fix)\"",
"lint:fix": "concurrently --group --prefix-colors auto --timings \"pnpm:lint:*:fix\" && pnpm format",
"lint:format": "prettier . --cache --check",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"node-test": "mocha test/**/*.js",
"node-test-with-coverage": "nyc --reporter lcov npm run-script node-test",
"start": "ember serve",
"test": "npm run-script lint && npm run-script node-test"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"debug": "^4.4.0",
"ember-try-config": "^4.0.0",
"es-toolkit": "^1.29.0",
"execa": "^4.1.0",
"fs-extra": "^6.0.1",
"resolve": "^1.22.8",
"rimraf": "^3.0.2",
"semver": "^7.6.3",
"temp-dir": "^2.0.0",
"walk-sync": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"codecov": "^3.8.3",
"concurrently": "^9.1.0",
"ember-cli": "~5.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.15.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"sinon": "^19.0.2",
"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-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}