-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 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
72
73
74
75
76
{
"name": "axios-serializy",
"version": "0.0.1",
"license": "MIT",
"description": "integration axios with serializy",
"main": "lib/axios-serializy.js",
"unpkg": "dist/axios-serializy.js",
"module": "es/axios-serializy.js",
"scripts": {
"build": "rollup -c",
"clean": "rimraf lib dist es",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"prepare": "npm run clean && npm run build",
"test": "exit 0"
},
"author": {
"name": "acacode"
},
"bugs": {
"url": "https://github.com/acacode/axios-serializy/issues"
},
"homepage": "https://github.com/acacode/axios-serializy#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"ajv": "6.0.0",
"babel-eslint": "8.2.1",
"eslint": "4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-prettier": "2.5.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"prettier": "1.10.2",
"rimraf": "^2.6.3",
"rollup": "1.11.3",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.3.4",
"rollup-plugin-node-resolve": "4.2.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4"
},
"keywords": [
"axios",
"serializy",
"javascript",
"javascript-library"
],
"typings": "./index.d.ts",
"dependencies": {
"http-helpers-serializy": "0.0.1"
},
"peerDependencies": {
"axios": "^0.19.0",
"serializy": "^1.0.0-alpha.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acacode/axios-serializy.git"
},
"github": {
"release": true
},
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
]
}