-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
{
"name": "@cesarbr/knot-cloud-sdk-js",
"version": "4.0.0",
"description": "KNoT Cloud SDK for NodeJS and browser",
"main": "./dist/main.js",
"module": "./dist/module.mjs",
"browser": "./dist/browser.js",
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud-sdk-js.git"
},
"engines": {
"node": ">=6"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <=11",
"not op_mini all"
],
"author": "KNoT",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"pre-commit": "^1.2.2",
"rollup": "^1.32.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@cesarbr/knot-cloud-sdk-js-amqp": "4.0.0",
"@cesarbr/knot-cloud-sdk-js-authenticator": "2.2.0",
"@cesarbr/knot-cloud-sdk-js-storage": "^1.0.4",
"@rollup/plugin-json": "^4.0.2"
}
}