-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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
{
"name": "axaj",
"version": "1.18.0",
"description": "A tiny and trivial AJAX library which uses the Fetch API.",
"keywords": [
"ajax",
"fetch-api",
"xhr",
"xml-http-request"
],
"author": "Anton Bagdatyev (Tonix)",
"license": "MIT",
"main": "./dist/axaj.js",
"module": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tonix-tuft/axaj.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "WEBPACK_ENV=watch webpack --progress --color --watch",
"dev-build": "WEBPACK_ENV=watch webpack --progress --color",
"build": "WEBPACK_ENV=build webpack",
"publish-git": "npm publish && git push && git push --tags",
"build-all": "npm run build && npm run dev-build",
"publish-patch": "npm run build-all && npm version patch && npm run publish-git",
"publish-minor": "npm run build-all && npm version minor && npm run publish-git",
"publish-major": "npm run build-all && npm version major && npm run publish-git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"minimist": ">=1.2.2",
"serialize-javascript": "^3.1.0",
"terser-webpack-plugin": "^3.1.0",
"typescript": "^3.9.7",
"webpack": "^5.49.0",
"webpack-cli": "^4.8.0"
},
"bugs": {
"url": "https://github.com/tonix-tuft/axaj/issues"
},
"homepage": "https://github.com/tonix-tuft/axaj#readme",
"dependencies": {
"immutable-linked-ordered-map": "^1.17.0",
"interval-jitter": "^1.8.1",
"js-utl": "^4.37.0"
}
}