-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.82 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "enhanced-yaml",
"description": "YAML parser and stringifier that preserves comments and styling",
"version": "0.1.0",
"license": "MIT",
"homepage": "https://github.com/paul-soporan/enhanced-yaml#readme",
"author": {
"name": "Paul Soporan",
"url": "https://github.com/paul-soporan"
},
"main": "./src/index.ts",
"publishConfig": {
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts"
},
"preferUnplugged": false,
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"clean": "rimraf lib",
"build:docs": "typedoc",
"type-check": "tsc --noEmit",
"format": "prettier --check .",
"lint": "eslint .",
"test": "jest",
"commit": "git commit",
"prepack": "run build",
"postpack": "run clean"
},
"dependencies": {
"lodash": "^4.17.20",
"yaml": "^1.10.0"
},
"devDependencies": {
"@jest/types": "^26.3.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/eslint": "^7.2.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.2",
"@types/prettier": "^2.1.0",
"@types/rimraf": "^3.0.0",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@wessberg/rollup-plugin-ts": "^1.3.3",
"@yarnpkg/pnpify": "^2.2.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^21.0.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.26.8",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"files": [
"/lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/paul-soporan/enhanced-yaml.git"
},
"bugs": {
"url": "https://github.com/paul-soporan/enhanced-yaml/issues"
},
"keywords": [
"yaml",
"parser",
"stringifier",
"comments"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests"
],
"*.{json,y?(a)ml,md}": "prettier --write"
}
}