forked from JSteunou/webstomp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "webstomp-client",
"version": "1.0.7",
"description": "Stomp client over websocket for browsers and nodejs",
"license": "Apache-2.0",
"keywords": [
"stomp",
"webstomp",
"websocket"
],
"author": "Jérôme Steunou",
"files": [
"dist",
"src",
"*.md",
"*.txt",
"index.d.ts"
],
"main": "dist/webstomp.js",
"types": "index.d.ts",
"es6": "src/webstomp.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JSteunou/webstomp-client.git"
},
"bugs": {
"url": "https://github.com/JSteunou/webstomp-client/issues"
},
"homepage": "https://github.com/JSteunou/webstomp-client#readme",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.0.0",
"http-server": "^0.9.0",
"opn-cli": "^3.1.0",
"webpack": "^2.2.0",
"ws": "^2.0.0"
},
"scripts": {
"test": "echo \"TODO: add tests\"",
"build": "webpack && webpack -p --config webpack.min.config.js",
"dev": "webpack --watch",
"example": "webpack && opn http://localhost:8080/example & http-server",
"lint": "eslint src --fix",
"lintnofix": "eslint src",
"preversion": "npm run lintnofix && npm run test",
"version": "npm run build && git add dist",
"postversion": "git push --follow-tags && npm publish"
}
}