forked from jdiaz5513/capnp-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.85 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
{
"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": "^2.2.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.1.1",
"gulp-typescript": "^3.2.0",
"gulp-util": "^3.0.8",
"lerna": "^2.0.0",
"merge-stream": "^1.0.1",
"nodemon": "^1.12.1",
"tap": "^10.7.0",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-language-service": "^0.9.6",
"typescript": "^2.6.1"
},
"homepage": "https://github.com/jdiaz5513/capnp-ts#readme",
"keywords": [
"capnp",
"rpc",
"typescript"
],
"license": "MIT",
"main": "lib/index",
"name": "capnp-ts-all",
"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 && 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",
"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",
"dependencies": {},
"workspaces": [
"packages/*"
]
}