-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
101 lines (101 loc) · 2.6 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
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
100
101
{
"name": "github-uploader",
"description": "Upload attachments to GitHub in CLI. The easiest way to get public URL to your files.",
"license": "MIT",
"author": "xxhomey19",
"homepage": "https://github.com/xxhomey19/github-uploader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xxhomey19/github-uploader.git"
},
"bugs": {
"url": "https://github.com/xxhomey19/github-uploader/issues"
},
"version": "0.2.0",
"main": "lib/cli.js",
"bin": {
"github-uploader": "lib/cli.js",
"gu": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && babel src -d lib --ignore '**/*.spec.js' -s && echo '#!/usr/bin/env node' | cat - lib/cli.js > temp && mv temp lib/cli.js",
"clean": "rimraf lib",
"precommit": "lint-staged",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"test": "npm run lint:fix && npm run testonly:cov",
"testonly": "NODE_ENV=test jest",
"testonly:cov": "jest --coverage --runInBand --forceExit --no-cache",
"testonly:watch": "jest --watch"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"babel-register": "^6.26.0",
"chalk": "^2.4.1",
"cli-table2": "^0.2.0",
"minimist": "^1.2.0",
"ora": "^3.0.0",
"puppeteer": "^1.8.0"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"prettier-package-json": "^2.0.0",
"rimraf": "^2.6.2"
},
"keywords": [
"GitHub",
"file",
"uploader"
],
"engines": {
"node": ">=6.4.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
],
"testPathIgnorePatterns": [
"node_modules/"
]
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}