-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 2.89 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
110
{
"name": "left-phalange-api",
"version": "3.0.0",
"description": "YAML, TOML, JSON, JSON5, INI, CSV, ES Module, CommonJS data loader, parser and stringifier",
"keywords": [
"data",
"ini",
"json",
"json5",
"load",
"loader",
"parse",
"parser",
"stringifier",
"stringify",
"toml",
"yaml",
"csv"
],
"homepage": "https://github.com/fisker/left-phalange-api#readme",
"bugs": {
"url": "https://github.com/fisker/left-phalange-api/issues"
},
"repository": "fisker/left-phalange-api",
"funding": "https://github.com/fisker/left-phalange-api?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "[email protected]",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "echo no need",
"clean": "run-p clean:*",
"clean:dist": "del-cli dist",
"dist": "run-p dist:*",
"dist:npm": "np --yolo --no-yarn",
"format": "run-p format:*",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "yarn lint:markdown --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:prettier": "yarn lint:prettier --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint \"**/*.{js,mjs,cjs,vue}\"",
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier \"**/*.{css,html,js,cjs,mjs,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"release": "run-s format clean build test dist",
"test": "ava",
"test-coverage": "nyc ava"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"files": [
"test/*"
],
"verbose": true
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"@fast-csv/parse": "4.3.6",
"@iarna/toml": "2.2.5",
"import-fresh": "3.3.0",
"ini": "3.0.1",
"js-yaml": "4.1.0",
"json5": "2.2.1",
"parse-json": "6.0.2"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@fisker/commitlint-config": "2.0.5",
"@fisker/eslint-config": "10.2.4",
"@fisker/husky-config": "4.1.2",
"@fisker/lint-staged-config": "3.1.5",
"@fisker/prettier-config": "5.0.6",
"ava": "5.1.0",
"cz-conventional-changelog": "3.3.0",
"del-cli": "5.0.0",
"eslint": "8.27.0",
"husky": "8.0.3",
"lint-staged": "13.0.3",
"markdownlint-cli": "0.32.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"outdent": "0.8.0",
"prettier": "2.7.1",
"sort-package-json": "2.1.0",
"temp-write": "5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}