-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "sauce.js-cli",
"version": "1.0.2",
"description": "CLI for SAUCE parser for Node.js",
"preferGlobal": true,
"bin": {
"sauce": "dist/index.js"
},
"scripts": {
"start": "./node_modules/ts-node/dist/bin.js ./src/index.ts",
"build": "tsc",
"lint": "tslint --project tsconfig.json --type-check; markdownlint README.md CHANGELOG.md",
"prepublishOnly": "npm run lint && npm run build"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nrlquaker/sauce.js-cli.git"
},
"keywords": [
"sauce",
"ansii-art",
"ascii-art"
],
"author": "nrlquaker",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrlquaker/sauce.js-cli/issues"
},
"homepage": "https://github.com/nrlquaker/sauce.js-cli#readme",
"dependencies": {
"sauce.js": "^1.0.3",
"yargs": "^13.2.2"
},
"devDependencies": {
"@types/node": "^11.13.5",
"@types/yargs": "^13.0.0",
"markdownlint-cli": "^0.15.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
}
}