-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "axlejs",
"version": "1.1.1",
"description": "Fetch, supercharged.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "npx open-cli https://codesandbox.io/s/axlejs-test-jjmdj",
"build": "sh scripts/build.sh",
"bundle": "npx webpack --config webpack.config.js",
"format": "npx prettier --config .prettierrc --write \"src/**/*.ts\"",
"format:watch": "npx onchange \"src/**/*.ts\" \"*.json\" \"*.md\" \"examples/**/*.ts\" \"test/**/*.ts\" -- prettier --write --ignore-unknown {{changed}}",
"lint": "npx eslint -c .eslintrc.json src/",
"lint:watch": "npx onchange \"src/**/*.ts\" \"examples/**/*.ts\" \"test/**/*.ts\" -- eslint -c .eslintrc.json --fix {{changed}}",
"lint:fix": "npx eslint -c .eslintrc.json --fix src/",
"minify": "npx uglifyjs dist/index.js -c -o dist/index.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksplatdev/AxleJS.git"
},
"keywords": [
"fetch",
"wrapper",
"ts",
"request",
"api",
"client",
"fast",
"supercharges",
"axle"
],
"author": "Bleart Emini",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksplatdev/AxleJS/issues"
},
"homepage": "https://github.com/ksplatdev/AxleJS#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"onchange": "^7.1.0",
"open-cli": "^7.0.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"uglify-js": "^3.14.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
}
}