-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
71 lines (71 loc) · 1.84 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "redaxios",
"version": "0.5.1",
"description": "The API from Axios, as a tiny abstraction over Fetch.",
"source": "src/index.js",
"main": "dist/redaxios.js",
"umd:main": "dist/redaxios.umd.js",
"module": "dist/redaxios.module.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle && tsc",
"test": "npm run format:check && eslint src test && karmatic",
"release": "npm run build && npm t && git commit -am \"$npm_package_version\" && git tag $npm_package_version && git push && git push --tags && npm publish",
"format": "prettier --write './**/*.{js,json,yml,md}'",
"format:check": "prettier --check './**/*.{js,json,yml,md}'"
},
"files": [
"dist",
"src"
],
"eslintConfig": {
"extends": [
"developit",
"prettier"
],
"rules": {
"jest/no-jasmine-globals": "off"
}
},
"prettier": {
"arrowParens": "always",
"trailingComma": "none",
"singleQuote": true,
"endOfLine": "lf",
"useTabs": true,
"printWidth": 120,
"overrides": [
{
"files": "**/*.json",
"options": {
"parser": "json-stringify",
"useTabs": false,
"tabWidth": 2
}
}
]
},
"repository": "developit/redaxios",
"keywords": [
"axios",
"fetch"
],
"author": "Jason Miller <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/developit/redaxios",
"devDependencies": {
"@types/jest": "^26.0.4",
"core-js": "2.6.11",
"eslint": "^7.5.0",
"eslint-config-developit": "^1.2.0",
"eslint-config-prettier": "6.11.0",
"file-loader": "^5.0.2",
"isomorphic-fetch": "^2.2.1",
"karmatic": "^2.1.0",
"microbundle": "^0.11.0",
"npm-merge-driver-install": "^1.1.1",
"prettier": "2.0.5",
"typescript": "3.9.7",
"webpack": "^4.41.5"
}
}