-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.15 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
{
"name": "@capnp-js/reader-arena",
"version": "0.4.0",
"description": "Cap'n Proto reader arena implementation.",
"main": "lib/index.js",
"scripts": {
"build": "gulp build",
"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",
"test-flow": "flow check --strip-root --show-all-errors --color=always",
"test-unit": "nyc --cache=false --reporter=html --reporter=text mocha --require @babel/register test/unit",
"test": "npm run test-flow && npm run test-unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capnp-js/reader-arena.git"
},
"author": "Tim Popham",
"license": "MIT",
"bugs": {
"url": "https://github.com/capnp-js/reader-arena/issues"
},
"homepage": "https://github.com/capnp-js/reader-arena#readme",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/preset-env": "^7.1.5",
"@babel/register": "^7.0.0",
"@capnp-js/builder-arena": "^0.4.0",
"@capnp-js/write-data": "^0.4.0",
"babel-eslint": "^8.2.1",
"del": "^3.0.0",
"eslint-plugin-flowtype": "^2.42.0",
"flow-bin": "^0.86.0",
"flow-typed": "^2.5.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^4.0.2",
"gulp-ext-replace": "^0.3.0",
"gulp-uglify": "^3.0.1",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"rollup": "^0.67.1"
},
"dependencies": {
"@capnp-js/base-arena": "^0.4.0",
"@capnp-js/bytes": "^0.4.0",
"@capnp-js/internal-error": "^0.4.0",
"@capnp-js/memory": "^0.4.0",
"@capnp-js/reader-core": "^0.4.0",
"@capnp-js/trans-base64": "^0.4.0",
"@capnp-js/trans-packing": "^0.4.0",
"@capnp-js/trans-stream": "^0.4.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.9"
},
"modules": "commonjs"
}
]
],
"plugins": [
"@babel/transform-flow-strip-types"
]
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
]
}
}