-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "group-links-by-domain",
"version": "1.1.1",
"description": "group links by domain",
"main": "index.es5.js",
"scripts": {
"coverage": "isparta cover _mocha index.js --include-all-sources -- --require babel-core/register",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "mocha --require babel-core/register",
"tdd": "npm test -- --watch",
"transpile": "babel index.js --out-file index.es5.js",
"prepublish": "npm run transpile",
"clean": "rimraf index.es5.js",
"push": "git push --follow-tags",
"postpublish": "npm-run-all clean push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamstarkov/group-links-by-domain.git"
},
"keywords": [
"link",
"links",
"domain",
"domains",
"group"
],
"author": "Vladimir Starkov <[email protected]> (https://iamstarkov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamstarkov/group-links-by-domain/issues"
},
"homepage": "https://github.com/iamstarkov/group-links-by-domain#readme",
"devDependencies": {
"assert": "*",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-preset-es2015": "^6.1.18",
"coveralls": "*",
"isparta": "*",
"mocha": "*",
"npm-run-all": "*",
"rimraf": "*"
},
"dependencies": {
"ramda": "^0.21.0"
}
}