-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "makfy",
"version": "2.1.1",
"description": "makfy - npm scripts on steroids!",
"main": "dist/lib/index.js",
"typings": "dist/lib/index.d.ts",
"bin": {
"makfy": "dist/bin/cli.js"
},
"scripts": {
"build": "rimraf ./dist && tsc -p .",
"prepublishOnly": "yarn build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xaviergonz/makfy.git"
},
"author": "Javier Gonzalez Garces <[email protected]>",
"keywords": [
"build",
"system",
"make",
"tool",
"asset",
"pipeline"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/xaviergonz/makfy/issues"
},
"homepage": "https://github.com/xaviergonz/makfy#readme",
"devDependencies": {
"@types/node": "^15.3.0",
"@types/tmp": "0.2.0",
"@types/yargs": "^16.0.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"chalk": "^4.0.0",
"glob": "^7.1.3",
"jsonschema": "^1.2.4",
"pretty-hrtime": "^1.0.3",
"strip-ansi": "^6.0.0",
"tmp": "^0.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"yargs": "^17.0.1"
}
}