-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "lime-js",
"version": "3.0.0",
"description": "JavaScript LIME implementation",
"main": "dist/lime.js",
"files": [
"dist/lime.js",
"dist/lime.min.js"
],
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"build": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack --watch",
"start": "npm run watch",
"deploy": "npm run postversion",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/takenet/lime-js.git"
},
"keywords": [
"LIME",
"MessagingHub",
"TypeScript",
"TCP",
"WebSocket",
"WS"
],
"author": "Arthur Xavier <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/takenet/lime-js/issues"
},
"homepage": "https://github.com/takenet/lime-js#readme",
"devDependencies": {
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^1.1.6",
"semantic-release": "^4.3.5",
"ts-loader": "7.0.5",
"typescript": "3.9.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.44.1",
"webpack-cli": "^3.3.12",
"@types/bluebird": "^3.5.32"
},
"dependencies": {
"bluebird": "^3.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}