-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (31 loc) · 844 Bytes
/
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
{
"name": "strip-newlines",
"version": "1.0.1",
"description": "An ES6 template string tag to replace newlines, indentation, and surrounding whitespace with a single space character.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel/register",
"prepublish": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blazzy/strip-newlines.git"
},
"keywords": [
"unindent",
"dedent",
"paragraph"
],
"author": "Krishna Rajendran <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/blazzy/strip-newlines/issues"
},
"homepage": "https://github.com/blazzy/strip-newlines#readme",
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.3.0",
"eslint": "^1.5.1",
"mocha": "^2.3.3"
}
}