-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
{
"name": "gister-cli",
"version": "1.0.3",
"description": "A simple node package which creates GitHub Gist based on files.",
"preferGlobal": true,
"bin": {
"gister-cli": "dist/gister.js"
},
"main": "dist/gister.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "babel src -d dist",
"test": "jest",
"prepublish": "npm run build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/*.js'"
},
"pre-commit": ["format"],
"files": [
"dist"
],
"keywords": [
"node",
"gist",
"github"
],
"author": "Aravind Balla <[email protected]> (http://aravindballa.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aravindballa/node-gister/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aravindballa/node-gister"
},
"dependencies": {
"axios": "^0.17.1",
"commander": "^2.12.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0"
},
"devDependencies": {
"all-contributors-cli": "^4.10.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.8.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.6.1",
"watch": "^1.0.2"
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
}
}