-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 969 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 969 Bytes
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
{
"name": "bfmb-base-connector",
"version": "0.3.0",
"description": "Base Connector for BFMBFramework development",
"main": "./dist/connector.js",
"scripts": {
"test": "node ./test/test.js",
"build": "gulp",
"clean": "rm -rf ./dist",
"rebuild": "npm run clean && npm run build",
"gendocs": "typedoc --out ./docs ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BFMBFramework/BaseConnector.git"
},
"keywords": [
"base",
"connector"
],
"author": "Ángel González",
"license": "MIT",
"bugs": {
"url": "https://github.com/BFMBFramework/BaseConnector/issues"
},
"homepage": "https://github.com/BFMBFramework/BaseConnector#readme",
"dependencies": {
"uuid": "^3.2.1"
},
"peerDependencies": {
"bfmb-comcenter": "~0.2.0"
},
"devDependencies": {
"@types/uuid": "^3.4.3",
"gulp": "^4.0.0",
"gulp-typescript": "^5.0.1",
"typescript": "^3.3.3333"
}
}