-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "resolvewithplus",
"version": "2.1.5",
"description": "resolvewith with extra power",
"readmeFilename": "README.md",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=12.16.0"
},
"main": "resolvewithplus.js",
"exports": {
"import": "./resolvewithplus.js"
},
"files": [
"resolvewithplus.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iambumblehead/resolvewithplus.git"
},
"keywords": [
"dependency",
"browserify",
"browser",
"commonjs",
"resolve",
"esm",
"resolution",
"file"
],
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.49.0",
"eslint-plugin-markdown": "^3.0.1"
},
"scripts": {
"test:install": "cd tests && npm run install:all",
"test:all": "cd tests && npm run test:all",
"test:all-ci": "cd tests && npm run test:all-ci",
"test": "npm run test:all",
"test-ci": "npm run test:install && npm run test:all-ci",
"test-cover": "npm run test:install && c8 npm run test:all",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"mini:pkg": "npm pkg delete scripts devDependencies",
"prepublishOnly": "npm run lint && npm run test-ci && npm run mini:pkg"
}
}