-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "self-throttle",
"description": "Helps clients to not overwhelm the services they call",
"author": "Andrew Aylett",
"version": "0.3.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/andrewaylett/self-throttle.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run buildonly",
"buildonly": "tsc --build .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest build",
"lint": "eslint .",
"prebuild": "npm run test",
"pretest": "npm run lint && npm run buildonly",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"dev": "npm run lint:fix && npm run build"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@tsconfig/node16": "16.1.0",
"@types/jest": "29.5.3",
"@types/node": "18.16.19",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.44.0",
"eslint-config-andrewaylett": "2.3.0",
"eslint-plugin-unicorn": "47.0.0",
"extend-expect": "1.0.2",
"jest": "29.6.1",
"prettier": "2.8.8",
"typescript": "5.1.6"
}
}