-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
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
{
"name": "ember-cli-version-checker",
"version": "5.1.2",
"description": "Determine if your addon is being used by a minimum version of Ember CLI.",
"homepage": "https://github.com/ember-cli/ember-cli-version-checker",
"bugs": {
"url": "https://github.com/ember-cli/ember-cli-version-checker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/ember-cli-version-checker.git"
},
"license": "MIT",
"author": "Robert Jackson <me@rwjblue.com>",
"main": "index.js",
"type": "module",
"directories": {
"test": "tests"
},
"files": [
"src",
"index.js"
],
"scripts": {
"changelog": "lerna-changelog",
"format": "prettier . --cache --write",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\" --prefixColors auto && npm run format",
"lint:format": "prettier . --cache --check",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"test": "mocha tests/*-tests.js",
"test:debug": "mocha debug tests/*-tests.js"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"resolve-package-path": "^3.1.0",
"semver": "^7.3.4",
"silent-error": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "^10.0.3",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"fixturify": "^2.1.1",
"fixturify-project": "^7.1.3",
"globals": "^17.7.0",
"mocha": "^11.7.6",
"prettier": "^3.9.5",
"release-plan": "^0.18.0"
},
"packageManager": "pnpm@11.15.1+sha512.81350b07e53c9538a02f1f2303b4290fa2d7be04e56e2a970c4cc4b417dc761de196edabd49d55c7dc9580db81007c44143e4e3d7e462b3000d23c255122d065",
"engines": {
"node": "22.* || 24.* || >= 26.*"
},
"volta": {
"node": "10.19.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}