-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.55 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.55 KB
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
{
"name": "import-esm",
"version": "0.0.6",
"description": "Import ECMAScript modules in the safe way",
"keywords": [
"esm",
"ES Module",
"ECMAScript Modules",
"Dynamic import",
"import",
"load",
"mjs"
],
"homepage": "https://github.com/fisker/import-esm#readme",
"bugs": {
"url": "https://github.com/fisker/import-esm/issues"
},
"repository": "fisker/import-esm",
"funding": "https://github.com/fisker/import-esm?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "[email protected]",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"main": "index.js",
"files": [
"index.js",
"import.js",
"import-from.js"
],
"scripts": {
"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,vue}\"",
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier \"**/*.{css,html,js,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"release": "run-s lint test dist",
"test": "node ./tests/main.js",
"test-coverage": "nyc run-s test test:flag",
"test:flag": "node --experimental-modules ./tests/main.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"*.js"
],
"reporter": [
"text",
"lcov"
]
},
"dependencies": {
"parent-module": "2.0.0"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@fisker/commitlint-config": "1.1.7",
"@fisker/eslint-config": "1.6.6",
"@fisker/husky-config": "1.1.9",
"@fisker/lint-staged-config": "1.0.12",
"@fisker/prettier-config": "1.0.29",
"cz-conventional-changelog": "3.1.0",
"del-cli": "3.0.0",
"eslint": "6.8.0",
"eslint-plugin-es": "3.0.0",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"markdownlint-cli": "0.22.0",
"npm-run-all": "4.1.5",
"nyc": "15.0.0",
"prettier": "1.19.1",
"sort-package-json": "1.40.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}