-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "ember-flat-to-nested",
"version": "1.0.0",
"description": "Transforms a flat colocated component structure to a nested colocated component structure.",
"repository": "https://github.com/bertdeblock/ember-flat-to-nested",
"license": "MIT",
"author": "Bert De Block",
"type": "module",
"main": "lib/index.js",
"bin": "bin/index.js",
"files": [
"bin/",
"lib/"
],
"scripts": {
"lint": "concurrently --group --prefix-colors auto \"npm:lint:*(!fix)\"",
"lint:fix": "concurrently --group --prefix-colors auto \"npm:lint:*:fix\"",
"lint:format": "prettier . --cache --check",
"lint:format:fix": "prettier . --cache --write",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "ava --watch",
"test": "ava"
},
"ava": {
"files": [
"test/test.js"
],
"ignoredByWatcher": [
"test/output"
]
},
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.1.1",
"recursive-readdir": "^2.2.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"ava": "^5.3.1",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^16.1.0",
"prettier": "^3.0.3",
"recursive-copy": "^2.0.14"
},
"engines": {
"node": ">= 18"
},
"volta": {
"node": "18.17.1"
}
}