-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.24 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
{
"name": "hl-stream",
"version": "1.0.0",
"description": "high-level streams library based on native node transforms",
"main": "index.js",
"dependencies": {
"ramda": "^0.25.0"
},
"devDependencies": {
"conventional-changelog-cli": "^1.3.4",
"coveralls": "^3.0.0",
"documentation": "^6.1.0",
"esdoc": "^1.0.4",
"esdoc-brand-plugin": "^1.0.0",
"esdoc-custom-theme": "^1.4.2",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-node": "^1.0.3",
"esdoc-publish-html-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo": "^0.18.2",
"eslint-plugin-prettier": "^2.2.0",
"http-server": "^0.9.0",
"husky": "^0.14.3",
"jest": "^21.0.0",
"jest-cli": "^21.0.0",
"lint-staged": "^4.2.1",
"nsp": "^2.6.3",
"prettier": "^1.7.0",
"standard": "^10.0.3",
"validate-commit": "^3.2.1"
},
"scripts": {
"changelog":
"conventional-changelog -p eslint -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"commitmsg": "validate-commit-msg -p eslint",
"lint": "eslint */**/*.js -f html -o ./test/reports/linter/index.html",
"test": "jest --coverage",
"make:publish": "bin/publish.sh",
"prepublish": "nsp check",
"pretest": "eslint .",
"precommit": "lint-staged",
"serve:coverage": "http-server coverage/ -o",
"serve:linter": "http-server test/report/linter -o",
"docs": "npm run doc:methods && esdoc",
"doc:methods":
"documentation build src/** -f md -o manual/Documentation.md && echo \"# Documentation\n$(cat manual/Documentation.md)\" > manual/Documentation.md",
"serve:docs": "http-server docs/ -o"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/madoos/hl-stream"
},
"author": {
"name": "Maurice Domínguez",
"email": "maurice.ronet.dominguez@gmail.com",
"url": "https://github.com/madoos"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/madoos/hl-stream/issues"
},
"homepage": "https://github.com/madoos/hl-stream#readme",
"keywords": ["stream", "node", "fp"]
}