forked from cleany/middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.01 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
{
"name": "messenger",
"version": "1.0.0",
"description": "This package gives a simple abstraction layer for sending messages (sms, mms, ...) through third part API.",
"main": "index.ts",
"dependencies": {},
"devDependencies": {
"awesome-typescript-loader": "^3.1.2",
"grpc": "^1.2.3",
"html-webpack-plugin": "^2.28.0",
"typescript": "^2.2.2",
"webpack": "^2.3.3",
"webpack-merge": "^4.1.0"
},
"scripts": {
"build:dev": "webpack --config config/webpack.config.js --env=dev --progress --profile --colors",
"build:prod": "webpack --config config/webpack.config.js --env=prod --progress --profile --colors",
"readme": "protoc --doc_out=markdown,README.md:. `git ls-files proto/*.proto`"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleany/messenger.git"
},
"author": "Sébastien Boulle",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cleany/messenger/issues"
},
"homepage": "https://github.com/cleany/messenger#readme"
}