-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.26 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
{
"name": "expression-expander",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public",
"provenance": true
},
"types": "./types/expander.d.mts",
"exports": {
".": {
"types": "./types/expander.d.mts",
"default": "./src/expander.mjs"
}
},
"description": "expands expressions in object graphs",
"keywords": [
"evaluate",
"expression",
"property"
],
"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:browser-ava && node --run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"test:browser-ava": "browser-ava --headless --no-keep-open tests/*-ava.mjs tests/*-ava-browser.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"
},
"devDependencies": {
"ava": "^6.2.0",
"browser-ava": "^2.3.7",
"c8": "^10.1.3",
"documentation": "^14.0.3",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arlac77/expression-expander.git"
},
"bugs": {
"url": "https://github.com/arlac77/expression-expander/issues"
},
"homepage": "https://github.com/arlac77/expression-expander#readme",
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-browser-ava",
"arlac77/template-javascript-component",
"arlac77/template-typescript"
]
}
}