-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.65 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.65 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
{
"name": "@nlib/esmify",
"publishConfig": {
"access": "public"
},
"version": "0.3.3",
"license": "Apache-2.0",
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://github.com/gjbkz"
},
"homepage": "https://github.com/nlibjs/esmify",
"repository": "https://github.com/nlibjs/esmify",
"engines": {
"node": ">=14"
},
"type": "module",
"main": "./esm/esmify.mjs",
"files": [
"esm",
"!**/*.test.*"
],
"bin": {
"esmify": "./esm/cli.mjs",
"nlib-esmify": "./esm/cli.mjs"
},
"scripts": {
"build": "tsc",
"test": "run-s build test:*",
"test:unit": "ava",
"lint": "eslint src",
"version": "npx @nlib/changelog --output CHANGELOG.md && git add CHANGELOG.md"
},
"dependencies": {
"acorn": "8.16.0",
"acorn-walk": "8.3.5",
"commander": "11.1.0",
"fast-glob": "3.3.3",
"typescript": "5.9.3"
},
"devDependencies": {
"@nlib/changelog": "0.3.2",
"@nlib/eslint-config": "3.20.2",
"@nlib/githooks": "0.2.2",
"@types/node": "20.19.35",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"ava": "5.3.1",
"eslint": "8.57.1",
"lint-staged": "14.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.8.1"
},
"eslintConfig": {
"extends": [
"@nlib/eslint-config"
],
"env": {
"node": true
}
},
"ava": {
"files": [
"esm/**/*.test.{ts,tsx,js,mjs,cjs,jsx}"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.*(m|c)+(j|t)s*(x)": "eslint"
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}