-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "payday-node",
"version": "0.0.1",
"description": "Unofficial Payday Node.js Library",
"keywords": [
"payday",
"api",
"typescript",
"javascript"
],
"author": "Egill Anton Hlöðversson",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"clean": "rimraf dist esm",
"prebuild": "npm run clean",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"test": "jest",
"build:esm": "tsc --module es2015 --target es5 --outDir esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist",
"build": "npm run build:esm && npm run build:cjs",
"lint": "eslint . --fix --cache && prettier --write src",
"lint:nofix": "eslint . && prettier --check src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egillanton/payday-node.git"
},
"bugs": {
"url": "https://github.com/egillanton/payday-node/issues"
},
"homepage": "https://github.com/egillanton/payday-node#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"node-fetch": "^3.3.1"
}
}