-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
{
"name": "@cesarbr/knot-cloud-sdk-js-storage",
"version": "1.0.4",
"description": "KNoT Cloud Storage library for NodeJS and browser",
"contributors": [
"Thiago Cardoso <[email protected]>",
"Paulo Serra Filho <[email protected]>",
"Ramon Ribeiro <[email protected]>",
"Joao Alexandre Neto <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud-sdk-js-storage.git"
},
"author": "CESARBR",
"license": "MIT",
"main": "./dist/main.js",
"module": "./dist/module.mjs",
"browser": "./dist/browser.js",
"scripts": {
"format": "prettier --write src",
"lint": "eslint src",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "mocha --require @babel/register"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nodemon": "^1.18.11",
"prettier": "^2.0.5",
"rollup": "^1.13.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.1"
},
"engines": {
"node": ">=6"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"axios": "^0.21.1",
"url": "^0.11.0"
}
}