-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) Β· 1.26 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
{
"name": "bashme",
"version": "0.3.7",
"description": "π¨βπ»π©βπ» The first command line interface about you",
"repository": {
"url": "https://github.com/agurodriguez/bashme.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -fr dist && tsc && cp node_modules/xterm/dist/xterm.css dist && node_modules/.bin/webpack",
"watch": "rm -fr dist && tsc && cp node_modules/xterm/dist/xterm.css dist && node_modules/.bin/webpack --watch",
"prepublish": "npm run build",
"test": "./node_modules/.bin/mocha -r ts-node/register test/**/*.ts"
},
"author": "agurodriguez",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.28.9",
"cli-table2": "^0.2.0",
"easy-table": "^1.1.1",
"minimist": "^1.2.0",
"xterm": "^3.14.5"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/cli-table2": "^0.2.2",
"@types/easy-table": "0.0.31",
"@types/inquirer": "0.0.43",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.18",
"chai": "^4.2.0",
"dotenv": "^6.2.0",
"mocha": "^5.2.0",
"ts-loader": "^5.4.5",
"ts-node": "^7.0.1",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
}
}