forked from ilaborie/devfest-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "devfest-toolkit",
"version": "1.4.0",
"description": "Tooling for Devfest",
"author": "Igor Laborie <ilaborie@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ilaborie/devfest-toolkit"
},
"keywords": [
"cli",
"devfest"
],
"license": "Apache-2.0",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=11.0.0 "
},
"main": "lib/index.js",
"bin": {
"devfest-toolkit": "./bin/run"
},
"oclif": {
"bin": "devfest-toolkit"
},
"files": [
"/bin",
"/lib"
],
"scripts": {
"clean": "npx rimraf lib/",
"prebuild": "npm run clean",
"build": "npx tsc --declaration",
"prelint-staged": "npm run build",
"start": "npx ts-node src/index.ts",
"prerelease": "npm run build",
"release": "np"
},
"dependencies": {
"@oclif/command": "^1.5.18",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.1",
"ansi-colors": "^4.1.1",
"cli-ux": "^5.3.1",
"diff": "^4.0.1",
"enquirer": "^2.3.1",
"fast-json-patch": "^2.2.1",
"gray-matter": "^4.0.2",
"ical.js": "^1.3.0",
"js-yaml": "^3.13.1",
"plop-logger": "^2.5.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/ansi-colors": "^3.2.0",
"@types/diff": "^4.0.2",
"@types/js-yaml": "^3.12.1",
"@types/node": "^12.7.2",
"@types/request-promise-native": "^1.0.16",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"ncp": "^2.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write",
"git add"
],
"*.{ts,js}": [
"eslint --fix src/**/*.ts",
"git add"
]
}
}