-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 862 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 862 Bytes
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
{
"name": "@freckle/ajax",
"version": "3.0.0",
"description": "Freckle ajax helpers",
"author": "Freckle",
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/ajax-js.git"
},
"scripts": {
"build": "rm -r dist && tsc -d",
"test": "jest",
"format": "prettier --write 'src/**/*.ts'"
},
"dependencies": {
"@freckle/maybe": "^2.3.0",
"lodash": "^4.18.1",
"socks-proxy-agent": "latest"
},
"resolutions": {
"socks-proxy-agent": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/jquery": "^4.0.0",
"@types/lodash": "^4.17.24",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.14.1"
}