-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"type": "module",
"name": "@awfl-team/loadout",
"version": "0.0.1",
"description": "",
"files": [
"build/*"
],
"module": "build/index.esm.js",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"build": "node build.js",
"build:type": "npm-dts generate -o ./build/index.d.ts",
"lint": "eslint --fix ./src --ignore-path .gitignore && prettier --write .",
"test": "jest --config jest.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awfl-team/loadout.git"
},
"author": "Florian Robert",
"license": "ISC",
"bugs": {
"url": "https://github.com/awfl-team/loadout/issues"
},
"homepage": "https://github.com/awfl-team/loadout#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"esbuild": "^0.19.11",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"npm-dts": "^1.3.12",
"prettier": "^2.8.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}