-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 966 Bytes
/
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
{
"name": "@jolie/jo",
"version": "1.0.2",
"description": "A thin JavaScript library for accessing microservice APIs",
"main": "dist/jo.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "webpack --mode=development",
"run-example": "npm --prefix example run watch",
"build-prod": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fmontesi/jo.git"
},
"keywords": [
"jolie",
"microservices",
"jo",
"rest"
],
"author": {
"name": "Fabrizio Montesi",
"email": "[email protected]",
"url": "https://www.fabriziomontesi.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fmontesi/jo/issues"
},
"homepage": "https://github.com/fmontesi/jo#readme",
"devDependencies": {
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}