-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.35 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
{
"name": "stream-insert",
"version": "1.1.0",
"description": "Transform stream which insert text into the passing stream",
"author": "Florent Dubois <[email protected]>",
"license": "MIT",
"keywords": [
"stream",
"transform",
"insert"
],
"bugs": "https://github.com/fldubois/stream-insert/issues",
"homepage": "https://github.com/fldubois/stream-insert#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fldubois/stream-insert.git"
},
"main": "lib/stream-insert.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:coverage",
"test:lint": "eslint lib test",
"test:unit": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive test/specs",
"test:coverage": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"preversion": "npm run test",
"version": "sed -r \"/## \\[Unreleased\\]/a\\\\\\n## [$npm_package_version] - `date +%F`\" -i CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push --follow-tags --no-verify"
},
"dependencies": {
"merge": "^1.2.0",
"yatc": "^0.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^2.13.1",
"istanbul": "^0.4.4",
"mocha": "^3.0.1"
}
}