-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.25 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
{
"name": "config-expander",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public",
"provenance": true
},
"types": "./types/expander.d.mts",
"exports": {
".": {
"default": "./src/expander.mjs",
"types": "./types/expander.d.mts"
}
},
"description": "Expands expressions in config files",
"keywords": [
"config",
"expression-evaluation"
],
"author": "Markus Felten <[email protected]>",
"contributors": [
{
"name": "Markus Felten",
"email": "[email protected]"
}
],
"license": "0BSD",
"scripts": {
"prepare": "node --run prepare:typescript",
"prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule --target es2024 --lib es2024 -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
"test": "node --run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme --section=API ./src/**/*.mjs",
"lint": "node --run lint:docs && node --run lint:typescript",
"lint:docs": "documentation lint ./src/**/*.mjs",
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib es2024 -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
},
"dependencies": {
"expression-expander": "^7.2.5",
"pratt-parser": "^10.0.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"ava": "^6.2.0",
"c8": "^10.1.3",
"documentation": "^14.0.3",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arlac77/config-expander.git"
},
"bugs": {
"url": "https://github.com/arlac77/config-expander/issues"
},
"homepage": "https://github.com/arlac77/config-expander#readme",
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-javascript-component",
"arlac77/template-typescript"
]
}
}