-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
58
{
"name": "unbreaker",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kawaz/unbreaker.git"
},
"version": "1.0.8",
"author": "Yoshiaki Kawazu <[email protected]> (https://twitter.com/kawaz)",
"homepage": "https://github.com/kawaz/unbreaker",
"license": "MIT",
"bugs": {
"url": "https://github.com/kawaz/unbreaker/issues"
},
"description": "Convert line breakable strings to non-breakable character sequence",
"keywords": [
"string",
"break",
"line",
"emoji",
"kaomoji",
"unicode"
],
"files": [
"bin",
"lib"
],
"bin": {
"unbreaker": "./bin/unbreaker.js"
},
"main": "lib/unbreaker.js",
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps inline",
"prepublish": "npm run --if-present build",
"pretest": "npm run build",
"test": "nyc ava",
"lint": "eslint src test",
"report": "nyc report --reporter=html"
},
"ava": {
"require": [
"babel-core/register"
]
},
"dependencies": {
"linebreak": "^0.3.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.23.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"coveralls": "^2.11.16",
"eslint": "^3.16.1",
"nyc": "^10.1.2"
}
}