-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "linkable",
"version": "0.4.5",
"description": "Detect URL, Email, Hashtag and Mention from plain-text and convert into HTML clickable hyperlink",
"main": "dist/linkable.js",
"scripts": {
"build-tld": "node build-tld-list.js > ./src/tld_list.js",
"build-demo": "parcel build demo/script.js --out-dir demo/dist",
"build": "rollup -c rollup.config.js && npm run build-demo",
"test": "cross-env NODE_ENV=test nyc tape ./tests/*.test.js",
"coverage": "cross-env NODE_ENV=test nyc --reporter=text-lcov tape ./tests/*.test.js | coveralls",
"tape": "nyc tape ./tests/hashtag.test.js",
"prepublish": "npm run build-tld && npm run build"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"author": "Mahdi Ghanea.g",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/meyt/linkable.js.git"
},
"bugs": {
"url": "https://github.com/meyt/linkable.js/issues"
},
"files": [
"/dist"
],
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^5.1.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"istanbul": "^0.4.5",
"nyc": "^14.1.1",
"parcel": "^1.12.3",
"parcel-bundler": "^1.11.0",
"punycode": "^2.1.1",
"rollup": "^0.67.3",
"rollup-plugin-babel-minify": "^6.2.0",
"tape": "^4.9.1",
"unicode-tr51": "^9.0.1"
}
}