-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 904 Bytes
/
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
{
"name": "knot-cloud",
"version": "1.0.1",
"description": "KNoT Cloud library for Node.js",
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-lib-node.git"
},
"contributors": [
"Thiago Cardoso <thiago.figuerdo@cesar.org.br>",
"Ramon Ribeiro <rhpr@cesar.org.br>"
],
"main": "./cjs/index.js",
"module": "./esm/index.js",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build": "babel esm --out-dir cjs",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.3.3",
"babel-preset-env": "^1.7.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3"
},
"dependencies": {
"@cesarbr/meshblu": "^1.34.3",
"is-base64": "0.0.6",
"lodash": "^4.17.11",
"request": "^2.88.0"
}
}