-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 2.16 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
{
"name": "axios-resource",
"version": "0.1.3",
"description": "Simple Axios resource class",
"author": "Emile Bergeron <[email protected]>",
"license": "MIT",
"main": "dist/axios-resource.common.js",
"module": "dist/axios-resource.esm.js",
"bugs": {
"url": "https://github.com/emileber/axios-resource/issues"
},
"homepage": "https://emileber.github.io/axios-resource/#/",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepush": "npm run lint",
"prepublishOnly": "npm run build",
"build": "node build/build.main.js",
"build:dev": "rollup -c build/rollup.dev.config.js",
"build:lint-config": "eslint -c .eslintrc.js --print-config .eslintrc.js > .eslintrc.json",
"test": "npm run lint && npm run test:unit",
"test:unit": "npm run build:dev && jest --config test/jest.conf.js",
"test:coverage": "npm run test:unit -- --coverage",
"lint": "eslint src test build",
"docs": "docsify serve ./docs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/emileber/axios-resource.git"
},
"keywords": [
"axios",
"rest",
"resource",
"model",
"http"
],
"peerDependencies": {
"axios": ">= 0.17.1"
},
"devDependencies": {
"axios": "^0.18.0",
"axios-mock-adapter": "^1.14.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.3",
"docsify-cli": "^4.2.0",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"jest": "^22.0.3",
"rimraf": "^2.6.2",
"rollup": "^0.56.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.3.11"
},
"dependencies": {
"object-assign": "^4.1.1"
}
}