-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.38 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
56
57
58
59
60
61
62
63
64
65
{
"name": "@ngx-grpc/protoc-gen-ng",
"version": "0.1.1",
"author": "smnbbrv",
"license": "MIT",
"description": "",
"main": "./dist/main.js",
"bin": {
"protoc-gen-ng": "./dist/main.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/ngx-grpc/protoc-gen-ng"
},
"scripts": {
"start": "nodemon --watch src --watch test/proto -e ts,proto --exec 'npm run build && npm run test:generate && echo \"Done\"'",
"build": "rimraf dist && tsc -p tsconfig.build.json && chmod +x dist/main.js",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:generate": "rimraf ./test/out/* && protoc --plugin=protoc-gen-ng=$(pwd)/dist/main.js --ng_out=./test/out -I test/proto $(find test/proto -iname \"*.proto\")",
"test:generate-grpc-web": "rimraf ./test/out-grpc-web/* && protoc -I=test/proto --js_out=import_style=commonjs:test/out-grpc-web --grpc-web_out=import_style=typescript,mode=grpcweb:test/out-grpc-web $(find test/proto -iname \"*.proto\")",
"wktgen:macosx": "mkdir -p dev-null && export WKT=$(dirname $(dirname $(greadlink -f $(which protoc))))/include && protoc --plugin=protoc-gen-wkt=$(pwd)/wktgen.js --wkt_out=./dev-null -I $WKT $(find $WKT -iname \"*.proto\")",
"release": "semantic-release"
},
"devDependencies": {
"@angular/core": "^8.2.13",
"@ngx-grpc/core": "0.0.1",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.3",
"@types/google-protobuf": "^3.7.2",
"@types/jasmine": "^3.4.6",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@types/prettier": "^1.18.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"acorn": "^6.3.0",
"eslint": "^6.6.0",
"eslint-plugin-deprecate": "^0.7.0",
"google-protobuf": "^3.10.0",
"grpc-web": "^1.0.6",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"semantic-release": "^15.13.31",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"dependencies": {
"prettier": "1.19.1",
"protoc-plugin": "0.0.6",
"winston": "^3.2.1"
}
}