-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.1 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
69
70
71
72
73
74
75
{
"name": "seashell",
"version": "0.14.4",
"main": "./lib/index.js",
"browser": "./dist/seashell-client.js",
"description": "A message framework for node.js and javascript.",
"scripts": {
"build": "babel ./src -d lib",
"build-cli": "babel ./src/cli -d packages/seashell-cli/cli --ignore test.js",
"build-inline": "babel --no-babelrc ./src -d packages/seashell --ignore __tests__ --ignore .test.js --presets=es2015,stage-0 --plugins=transform-class-properties,transform-runtime",
"build-client": "react-sh --build --compress",
"publish-next": "cd packages/seashell && npm publish --tag=next && cd ../..",
"test": "jest __tests__"
},
"repository": {
"type": "git",
"url": "git@github.com:heineiuo/seashell"
},
"keywords": [
"servicehub",
"microservice",
"seashell"
],
"author": "@heineiuo",
"license": "MIT",
"docpress": {
"docs": "docs",
"github": "heineiuo/seashell"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-dynamic-import-node": "^1.0.1",
"babel-plugin-transform-class-properties": "~6.9.1",
"babel-plugin-transform-runtime": "~6.9.0",
"babel-preset-es2015": "~6.9.0",
"babel-preset-stage-0": "~6.5.0",
"babel-runtime": "^6.23.0",
"body-parser": "^1.17.1",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"ent": "^2.2.0",
"express": "^4.15.2",
"formidable": "^1.1.1",
"http-proxy": "^1.16.2",
"jest": "^19.0.2",
"joi": "^10.6.0",
"lodash": "^4.17.4",
"morgan": "^1.8.1",
"mz": "^2.6.0",
"nedb-promise": "^2.0.1",
"path-to-regexp": "^1.7.0",
"prettyjson": "^1.2.1",
"seashell": "^0.12.1-beta.2",
"shelljs": "^0.7.7",
"ua-parser-js": "^0.7.12",
"uuid": "~2.0.2",
"webpack": "^2.4.1",
"webpack-node-externals": "^1.5.4",
"yargs": "^7.1.0"
},
"files": [
"lib",
"dist",
"index.d.ts"
],
"dependencies": {
"babel-runtime": "^6.23.0",
"bson": "^1.0.4",
"isomorphic-ws": "^4.0.0",
"joi": "^10.6.0",
"ws": "^4.0.0"
}
}