forked from pensierinmusica/firstline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "firstline",
"description": "Async npm module for Node JS that reads the first line of a file",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"pre-commit": "npm test",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro",
"test": "npm run lint && nyc mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/pensierinmusica/firstline.git"
},
"homepage": "https://github.com/pensierinmusica/firstline",
"bugs": {
"url": "https://github.com/pensierinmusica/firstline/issues"
},
"keywords": [
"read",
"check",
"file",
"content",
"filesystem",
"io",
"stream",
"async",
"promise"
],
"author": "Alessandro Zanardi",
"license": "MIT",
"engines": {
"node": ">=6.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"js-promisify": "^1.1.0",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"rimraf": "^2.6.2",
"semantic-release": "^15.5.0",
"travis-deploy-once": "^5.0.0"
},
"version": "0.0.0-development"
}