-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "simpleddp",
"version": "2.3.0",
"description": "The aim of this library is to simplify the process of working with meteor server over DDP protocol using external JS environments",
"keywords": [
"ddp",
"simpleddp",
"simple",
"ddpjs",
"ddp.js",
"DDP",
"WebSocket",
"client",
"meteor"
],
"main": "lib/simpleddp.js",
"scripts": {
"test": "npm run build && mocha",
"docs": "jsdoc -c jsdoc_conf.json",
"build": "rm -rf lib && babel src --out-dir lib --no-comments",
"prepare": "npm run build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gregivy/simpleddp.git"
},
"author": "Plyusch Gregory (aka Gregivy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gregivy/simpleddp/issues"
},
"homepage": "https://gregivy.github.io/simpleddp/",
"dependencies": {
"clone-deep": "^4.0.1",
"ejson": "^2.2.0"
},
"devDependencies": {
"@pixi/jsdoc-template": "^2.4.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"jsdoc": "^3.6.3",
"mocha": "^5.2.0",
"ws": "^6.2.1"
}
}