-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 989 Bytes
/
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
{
"name": "@aocjs/cli",
"version": "1.0.0-alpha.2",
"description": "🎄 Advent of Code CLI tool",
"bin": {
"aoc": "dist/src/bin/cli.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --fix",
"preversion": "npm run lint",
"version": "git add -A .",
"postversion": "git push && git push --tags",
"prepare": "npm run build"
},
"keywords": [
"advent of code",
"aoc",
"javascript",
"typescript"
],
"author": "Mario Ferrero Fernández",
"license": "MIT",
"repository": "github:aocjs/cli",
"homepage": "https://aocjs.github.io/",
"devDependencies": {
"@types/node": "16.10.2",
"@types/node-fetch": "2.5.12",
"@types/nodemon": "^1.19.1",
"@types/yargs": "17.0.3",
"eslint": "7.32.0",
"ts-standard": "10.0.0",
"typescript": "4.4.3"
},
"dependencies": {
"node-fetch": "2.6.5",
"nodemon": "^2.0.13",
"yargs": "17.2.1"
},
"files": [
"templates/**/*",
"dist/**/*"
]
}