This repository has been archived by the owner on Aug 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "urcli",
"version": "4.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/trolster/ur-cli.git"
},
"author": "Mikkel Trolle Larsen <trolster2@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/trolster/ur-cli#readme",
"scripts": {
"clean": "rm -rf ./lib",
"prelint": "npm run clean",
"lint": "eslint ./src",
"prebuild": "npm run lint",
"build": "babel src -d lib --presets es2015-node,stage-3",
"release": "np"
},
"bin": {
"urcli": "./lib/index.js"
},
"dependencies": {
"chalk": "^1.1.3",
"cli-table3": "^0.5.0",
"commander": "^2.9.0",
"currency-formatter": "^1.1.1",
"homedir": "^0.6.0",
"inquirer": "^3.0.6",
"moment": "^2.14.1",
"moment-parseformat": "^2.1.4",
"node-fetch": "^1.6.0",
"node-notifier": "^5.0.2",
"opn": "^4.0.2",
"ora": "^1.1.0",
"pushbullet": "^2.0.0",
"request": "^2.74.0",
"winston": "^2.2.0"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015-node": "^6.1.1",
"babel-preset-stage-3": "^6.22.0",
"eslint": "^3.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"np": "^2.13.1"
},
"babel": {
"presets": [
"es2015-node",
"stage-3"
]
}
}