-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.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
{
"name": "gulp-convert-newline",
"version": "0.0.3",
"description": "Gulp plugin that unifying newline characters to either \\n, \\r\\n, or \\r.",
"homepage": "https://github.com/takenspc/gulp-convert-newline/",
"author": "Takeshi Kurosawa <[email protected]>",
"license": "MIT",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --require intelli-espower-loader test/ -R spec",
"lint": "eslint .",
"test": "mocha --require intelli-espower-loader test/"
},
"repository": {
"type": "git",
"url": "https://github.com/takenspc/gulp-convert-newline.git"
},
"dependencies": {
"convert-newline": "^0.0.x",
"gulp-util": "^3.0.4",
"iconv-lite": "^0.4.8",
"through2": "^0.6.5"
},
"devDependencies": {
"buffer-equals": "^1.0.3",
"coveralls": "^2.11.2",
"eslint": "^0.21.1",
"espower-loader": "^0.11.0",
"event-stream": "^3.3.1",
"intelli-espower-loader": "^0.7.0",
"istanbul": "^0.3.14",
"mocha": "^2.2.5",
"power-assert": "^0.11.0"
},
"engines": {
"node": ">=0.10",
"iojs": ">=2.0"
}
}