-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
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
63
64
65
66
67
68
{
"name": "todd",
"version": "1.0.0",
"description": "A CLI tool for packaging programs into Windows/Mac/Ubuntu installers",
"preferGlobal": true,
"bin": {
"todd": "dist/src/bin/todd.js"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "nyc --reporter=json-summary --reporter=text mocha -r ts-node/register 'src/**/*.test.ts'",
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "echo '#!/usr/bin/env node\n' | cat - dist/src/bin/todd.js > temp && mv temp dist/src/bin/todd.js",
"start": "NODE_ENV=development ts-node src/bin/todd.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cilly-cli/todd.git"
},
"keywords": [
"cli",
"tool",
"installer",
"executable",
"macos",
"mac",
"windwows",
"linux",
"ubuntu",
"package"
],
"author": "Anders Brams",
"license": "ISC",
"bugs": {
"url": "https://github.com/cilly-cli/todd/issues"
},
"homepage": "https://github.com/cilly-cli/todd#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.13",
"@types/shelljs": "^0.8.8",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.15.0",
"eslint-plugin-unused-imports": "^1.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cilly": "^1.0.13",
"enquirer": "^2.3.6",
"shelljs": "^0.8.4"
}
}