-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.57 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
91
92
93
94
95
96
{
"name": "super-yaml",
"version": "0.0.0-development",
"author": "Dori Aviram @doriaviram",
"bin": {
"super-yaml": "./bin/run"
},
"bugs": "https://github.com/doriaviram/super-yaml/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"string-kit": "^0.12.5",
"tslib": "^1"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/faker": "^5.5.1",
"@types/jest": "^26.0.22",
"@types/js-yaml": "^4.0.0",
"@types/node": "^10",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-jest": "^26.6.3",
"chai": "^4",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.23.0",
"eslint-plugin-jest": "^24.3.2",
"faker": "^5.5.3",
"gh-pages": "^3.1.0",
"globby": "^10",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nyc": "^14",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"ts-node": "^8",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/doriaviram/super-yaml",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "super-yaml",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "doriaviram/super-yaml",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"eslint:fix": "eslint . --fix --ext .ts --config .eslintrc",
"eslint:test": "eslint . --ext .ts --config .eslintrc",
"prettier:fix": "prettier --write .",
"pretest": "yarn run prettier:fix && yarn run eslint:fix",
"deploy": "echo TODO",
"posttest": "yarn run eslint:test && prettier --check .",
"prepack": "yarn build && oclif-dev manifest && oclif-dev readme",
"test": "tsc && jest",
"tsc": "tsc",
"build": "rm -rf lib && tsc -b",
"test:ci": "tsc && jest && yarn run posttest",
"version": "oclif-dev readme && git add README.md",
"semantic-release": "semantic-release",
"commit": "cz"
},
"types": "lib/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}