-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "wamp.js",
"version": "0.2.5",
"description": "The Web Application Messaging Protocol for react-native and web browser.",
"main": "./dist/index.js",
"scripts": {
"dev": "babel -w js --out-dir dist",
"build": "babel --compact true --minified js --out-dir dist",
"clean": "rm -rf dist",
"prepublish": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webee/wamp.js.git"
},
"keywords": [
"wamp",
"nodejs",
"react-native",
"js",
"autobahn",
"autobahn-js",
"websocket",
"rpc",
"pub/sub"
],
"author": "webee.yw <webee.yw@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webee/wamp.js/issues"
},
"homepage": "https://github.com/webee/wamp.js#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.8.1"
}
}