-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.39 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
{
"name": "warframe-name-generator",
"version": "0.0.0-development",
"description": "Name Generator for Warframe",
"exports": {
".": {
"import": "./lib/Generator.js"
},
"./data": {
"import": "./lib/data.js"
}
},
"type": "module",
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "npx install-peerdeps @wfcd/eslint-config@latest -S"
},
"keywords": [
"warframe",
"name generator",
"warframe name generator"
],
"author": "TobiTenno",
"license": "Apache-2.0",
"engines": {
"node": ">=18.19.1",
"npm": ">=10.2.4"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "^5.1.0",
"mocha": "^10.3.0",
"sinon": "^19.0.2"
},
"c8": {
"reporter": [
"lcov",
"text"
],
"skip-full": true
},
"mocha": {
"exit": true,
"check-leaks": true,
"diff": true,
"color": true,
"spec": "test/**/*.spec.js"
},
"eslintIgnore": [],
"eslintConfig": {
"extends": [
"@wfcd/eslint-config/esm"
],
"parserOptions": {
"sourceType": "module",
"parser": "@babel/eslint-parser"
}
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-class-properties",
"@babel/plugin-transform-private-methods"
]
},
"prettier": "@wfcd/eslint-config/prettier"
}