-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 991 Bytes
/
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
{
"name": "warframe-name-generator",
"version": "0.0.0-development",
"description": "Name Generator for Warframe",
"keywords": [
"warframe",
"name generator",
"warframe name generator"
],
"license": "Apache-2.0",
"author": "TobiTenno",
"type": "module",
"exports": {
".": {
"import": "./lib/Generator.js"
},
"./data": {
"import": "./lib/data.js"
}
},
"scripts": {
"fmt": "npx prettier --check .",
"fmt:fix": "npx prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
"test": "c8 mocha"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"c8": "^10.1.2",
"chai": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mocha": "^10.3.0",
"sinon": "^19.0.2"
},
"engines": {
"node": ">=18.19.1",
"npm": ">=10.2.4"
}
}