This repository has been archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "webstomp-client",
"version": "1.2.6",
"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-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.1.0",
"http-server": "^0.11.1",
"opn-cli": "^3.1.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"uglify-js": "^3.4.4",
"ws": "^5.2.2"
},
"scripts": {
"test": "echo \"TODO: add tests\"",
"build": "rollup -c && uglifyjs dist/webstomp.js -o dist/webstomp.min.js",
"example": "npm run build && 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"
}
}