-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.91 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
{
"name": "generator-luau",
"version": "0.1.5",
"description": "A Yeoman generator for Luau projects",
"repository": {
"type": "git",
"url": "git+https://github.com/seaofvoices/generator-luau.git"
},
"type": "module",
"homepage": "https://github.com/seaofvoices/generator-luau",
"author": {
"name": "jeparlefrancais",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"generator",
"yeoman-generator",
"luau",
"roblox",
"lune"
],
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"format": "prettier src/**/*.js --write",
"style-check": "prettier src/**/*.js --check",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"clean": "rm -rf node_modules"
},
"dependencies": {
"axios": "^1.7.2",
"js-yaml": "^4.1.0",
"mem-fs": "^4.1.0",
"prettier": "^3.3.2",
"prettier-package-json": "^2.8.0",
"yeoman-environment": "^4.4.1",
"yeoman-generator": "^7.3.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@pollyjs/adapter-node-http": "^6.0.6",
"@pollyjs/core": "^6.0.6",
"@pollyjs/persister-fs": "^6.0.6",
"@types/inquirer": "^9.0.7",
"@yeoman/types": "^1.2.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-after-this": "^1.0.4",
"rollup": "^4.18.0",
"rollup-plugin-copy": "^3.5.0",
"yeoman-test": "^8.3.0"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"testPathIgnorePatterns": [
"utils.js"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"jest": true,
"node": true,
"es6": true
}
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true
}
}