forked from jdiaz5513/capnp-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"author": "jdiaz5513",
"bugs": {
"url": "https://github.com/jdiaz5513/capnp-ts/issues"
},
"description": "Strongly typed Cap'n Proto implementation for the browser and Node.js using TypeScript",
"devDependencies": {
"codecov": "^3.0.4",
"glob": "^7.1.3",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.1",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0-alpha.3",
"gulp-util": "^3.0.8",
"husky": "^1.0.0-rc.13",
"lerna": "^3.1.4",
"lint-staged": "^7.2.2",
"merge-stream": "^1.0.1",
"nodemon": "^1.18.3",
"prettier": "1.14.2",
"tap": "^12.0.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.1"
},
"homepage": "https://github.com/jdiaz5513/capnp-ts#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"capnp",
"rpc",
"typescript"
],
"license": "MIT",
"lint-staged": {
"linters": {
"*.ts": [
"prettier --write",
"tslint -p .",
"git add"
]
},
"ignore": [
"packages/capnpc-ts/bin/**/*.ts"
]
},
"main": "lib/index",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/jdiaz5513/capnp-ts.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"benchmark": "gulp benchmark",
"build": "gulp build",
"build:watch": "nodemon -w ./packages/capnp-ts/src -w ./packages/capnpc-ts/src -i ./packages/capnp-ts/src/std -e .ts -x yarn build",
"ci": "gulp lint && gulp coverage && codecov --disable=gcov && packages/js-examples/test.sh",
"coverage": "gulp coverage",
"coverage:watch": "nodemon -w ./packages/capnp-ts/src -w ./packages/capnpc-ts/src -i ./packages/capnp-ts/src/std -e .ts -x yarn coverage",
"lerna": "lerna",
"lint": "gulp lint",
"publish": "yarn install && lerna publish",
"prepublish": "gulp build",
"test": "gulp test",
"test:watch": "nodemon -w ./packages/capnp-ts/src -w ./packages/capnpc-ts/src -i ./packages/capnp-ts/src/std -e .ts -x yarn test",
"watch": "gulp watch"
},
"typings": "lib/index",
"version": "0.0.1",
"workspaces": [
"packages/*"
]
}