-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "inbox-cli",
"version": "1.0.0-alpha14",
"author": "Daniel Ma <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/danielma/inbox-cli",
"bugs": {
"url": "https://github.com/danielma/inbox-cli/issues"
},
"main": "./dist/index.js",
"files": [
"dist/",
"src/*"
],
"bin": {
"inbox-cli": "./dist/index.js"
},
"dependencies": {
"neo-blessed": "^0.2.0",
"chalk": "^2.3.0",
"googleapis": "^23.0.0",
"html-to-text": "^3.3.0",
"neo-blessed": "^0.2.0",
"react": ">= 16.0.0",
"react-blessed": "danielma/react-blessed#80aa6fe6e5fc16986f258b9708b5e5f3fd3a5347"
},
"scripts": {
"start": "node -r ts-node/register src/index.js",
"clear-dist": "rimraf dist",
"typescript-build": "tsc",
"build": "npm run clear-dist && npm run typescript-build",
"prepack": "npm run build",
"test": "npm run typescript-build",
"_i_know_": "that is not a real test",
"prepare": "patch-package",
"release": "node release.js"
},
"devDependencies": {
"@types/react": "^16.0.29",
"@types/request": "^2.0.9",
"patch-package": "^5.0.0",
"postinstall-prepare": "^1.0.1",
"prettier": "^1.8.2",
"rimraf": "^2.6.2",
"ts-node": "^4.0.1",
"typescript": "^2.6.2"
},
"prettier": {
"proseWrap": false,
"semi": false,
"printWidth": 100
}
}