This repository was archived by the owner on Jul 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.09 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.09 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "surl-cli",
"version": "0.0.0-semantically-released",
"description": "URL shortener CLI",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"pretest": "npm run build:quiet --silent",
"test": "npm-run-all eslint mocha --silent",
"test:unit": "cross-env NODE_ENV=unit npm run mocha --silent # Run tests without API tests",
"test:watch": "cross-env NODE_ENV=unit npm run mocha --silent -- --watch",
"watch": "npm run test:watch",
"eslint": "eslint . --ignore-path .gitignore --cache --cache-location \"./eslint/.eslintcache\" ",
"eslint:makeHtml": "npm run eslint -- --format html -o ./eslint/report.html",
"eslint:open": "npm run eslint:makeHtml && opn ./eslint/report.html",
"mocha": "mocha --timeout 6000",
"prebuild": "rimraf ./build",
"build": "babel ./src -d ./build",
"build:quiet": "npm run build -- --quiet # Run babel in quiet mode",
"build:watch": "nodemon --exec npm run build",
"coverage:check": "istanbul cover -x \"*.test.js\" _mocha -- -R spec test/test.js",
"coverage:open": "npm run coverage:check && opn coverage/lcov-report/index.html",
"coverage:report": "script/coverage-report.sh",
"semantic-release": "semantic-release # This is meant to run on Travis only",
"travis-deploy-once": "travis-deploy-once # This is meant to run on Travis only"
},
"bin": {
"surl": "./bin/surl.js"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/hankchanocd/surl-cli.git"
},
"keywords": [
"shortenUrl",
"surl",
"url",
"cli",
"bit.ly",
"firebase",
"goo.gl"
],
"files": [
"build",
"README.md",
"bin/"
],
"author": "Hank Chan <hankchanth@icloud.com> (https://github.com/hankchanocd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hankchanocd/surl-cli/issues"
},
"homepage": "https://github.com/hankchanocd/surl-cli#readme",
"dependencies": {
"bitly": "^6.0.8",
"chalk": "^2.4.1",
"clipboardy": "^1.2.3",
"cliui": "^4.1.0",
"columnify": "^1.5.4",
"commander": "^2.19.0",
"conf": "1.4.0",
"inquirer": "5.2.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"codecov": "^3.1.0",
"commitizen": "^3.0.4",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-promise": "^4.0.1",
"expect.js": "^0.3.1",
"ghooks": "^2.0.4",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"npm-run-all": "^4.1.3",
"opn-cli": "^4.0.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.11.0",
"travis-deploy-once": "^5.0.9"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:unit # No need to run full-suite test",
"pre-push": "npm run coverage:check --silent # Run `npm run test` before coverage-check"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}