forked from zaaack/foy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.74 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "foy",
"version": "0.1.16",
"description": "A simple, light-weight and modern task runner for general purpose.",
"main": "./lib/index.js",
"typings": "./lib/index",
"types": "./lib/index",
"sideEffects": false,
"scripts": {
"foy": "ts-node ./src/cli.ts",
"build": "npm run foy -- build",
"test": "npm run foy -- test",
"test:update-snap": "npm run foy -- test:update-snap",
"watch": "npm run foy -- watch"
},
"bin": {
"foy": "./lib/cli.js"
},
"pre-commit": [],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zaaack/foy.git"
},
"keywords": [
"make",
"build",
"tools",
"cli"
],
"author": "Zack Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaaack/foy/issues"
},
"homepage": "https://github.com/zaaack/foy#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/ejs": "^2.6.1",
"@types/execa": "^0.9.0",
"@types/figures": "^2.0.0",
"@types/jasmine": "^3.3.8",
"@types/log-symbols": "^2.0.0",
"@types/log-update": "^2.0.0",
"@types/marked": "^0.5.0",
"@types/node": "^10.12.10",
"@types/strip-ansi": "^3.0.0",
"axios": "^0.18.0",
"ejs": "^2.6.1",
"generate-changelog": "^1.7.1",
"jasmine": "^3.3.1",
"marked": "^0.5.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.4.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.13.0",
"typescript": "^3.2.2"
},
"dependencies": {
"cac": "^6.3.12",
"chalk": "^2.4.1",
"cli-spinners": "^1.3.1",
"execa": "^1.0.0",
"figures": "^2.0.0",
"strip-ansi": "^5.0.0",
"tslib": "^1.8.1",
"wcwidth": "^1.0.1"
},
"peerDependencies": {}
}