-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.95 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
{
"name": "corrode",
"version": "1.0.6",
"description": "A batteries-included library for reading binary data.",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --source-maps",
"watch": "npm run build -- --watch",
"test": "mocha test --compilers js:babel-register ./test",
"lint": "eslint src",
"docs": "esdoc2 -c esdoc.json",
"coverage": "nyc --require babel-core/register --reporter=lcov mocha",
"coverall": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screeny05/corrode.git"
},
"author": "Sebastian Langer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/screeny05/corrode/issues"
},
"homepage": "https://github.com/screeny05/corrode",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"buffer-safe": "^1.0.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"esdoc2": "^2.1.3",
"esdoc2-coverage-plugin": "^2.0.0",
"esdoc2-ecmascript-proposal-plugin": "^2.0.0",
"esdoc2-publish-html-plugin": "^2.0.1",
"esdoc2-standard-plugin": "^2.1.0",
"eslint": "^3.0.0",
"eslint-config-xo": "^0.15.2",
"eslint-plugin-babel": "^3.3.0",
"istanbul": "^0.4.4",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"nyc": "^6.6.1"
},
"dependencies": {
"bl": "^1.1.2",
"lodash": "^4.17.2",
"readable-stream": "^2.2.2"
},
"eslintConfig": {
"extends": "xo/esnext",
"rules": {
"indent": [
"error",
4
],
"keyword-spacing": 0,
"space-before-function-paren": [
2,
"never"
],
"space-before-blocks": [
2,
"never"
]
}
}
}