-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.47 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.47 KB
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
79
80
81
82
83
84
85
86
87
{
"name": "@capnp-js/plugin",
"version": "0.4.0",
"description": "Cap'n Proto code generator",
"main": "lib/index",
"bin": {
"capnpc-flow-js": "lib/bin/flow.js"
},
"scripts": {
"build": "gulp lib",
"refresh": "rm -f package-lock.json && npm run clean && npm unpublish --force && rm -rf node_modules/@capnp-js && npm run build && npm publish",
"clean": "gulp clean",
"compile-schema": "gulp compile && gulp lint",
"test-flow": "flow check --merge-timeout 0 --strip-root --show-all-errors --color=always src",
"test-integration": "mocha --require @babel/register integration/test",
"test": "npm run test-flow && npm run test-integration",
"start-flow": "flow start --merge-timeout 20000",
"flow": "flow",
"stop-flow": "flow stop"
},
"repository": {
"type": "git",
"url": "https://github.com/capnp-js/capnp-js-plugin.git"
},
"keywords": [
"capnproto",
"capnp",
"capnpc"
],
"author": "Tim Popham",
"license": "MIT",
"bugs": {
"url": "https://github.com/capnp-js/capnp-js-plugin/issues"
},
"homepage": "https://github.com/capnp-js/capnp-js-plugin",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"del": "^3.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"flow-bin": "^0.93.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-ext-replace": "^0.3.0",
"gulp-jscc": "^1.2.0",
"mocha": "^5.2.0"
},
"dependencies": {
"@capnp-js/base-arena": "^0.4.0",
"@capnp-js/builder-arena": "^0.4.0",
"@capnp-js/bytes": "^0.4.0",
"@capnp-js/int64": "^0.4.0",
"@capnp-js/layout": "^0.4.0",
"@capnp-js/memory": "^0.4.0",
"@capnp-js/nullary": "^0.4.0",
"@capnp-js/read-data": "^0.4.0",
"@capnp-js/reader-arena": "^0.4.0",
"@capnp-js/trans-align-bytes": "^0.4.0",
"@capnp-js/trans-base64": "^0.4.0",
"@capnp-js/trans-concat": "^0.4.0",
"@capnp-js/trans-inject": "^0.4.0",
"@capnp-js/trans-packing": "^0.4.0",
"@capnp-js/trans-readable": "^0.4.0",
"@capnp-js/trans-stream": "^0.4.0",
"@capnp-js/uint64": "^0.4.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.9"
},
"modules": "commonjs"
}
]
],
"plugins": [
"@babel/transform-flow-strip-types"
]
}
}