-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 2.13 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nimma",
"version": "0.7.1",
"description": "Scalable JSONPath engine.",
"keywords": [
"json",
"jsonpath"
],
"homepage": "https://github.com/P0lip/nimma",
"bugs": {
"url": "https://github.com/P0lip/nimma/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"src",
"cjs"
],
"type": "module",
"types": "./src/index.d.ts",
"main": "./cjs/index.cjs",
"module": "./src/index.mjs",
"exports": {
".": {
"import": {
"types": "./src/index.d.ts",
"default": "./src/index.mjs"
},
"require": {
"types": "./src/index.d.ts",
"default": "./cjs/index.cjs"
}
},
"./parser": {
"import": "./src/parser/index.mjs",
"require": "./cjs/parser/index.cjs"
},
"./runtime": {
"import": "./src/runtime/index.mjs",
"require": "./cjs/runtime/index.cjs"
},
"./errors": {
"import": {
"types": "./src/runtime/errors/index.d.ts",
"default": "./src/runtime/errors/index.mjs"
},
"require": {
"types": "./src/runtime/errors/index.d.ts",
"default": "./cjs/runtime/errors/index.cjs"
}
}
},
"sideEffects": false,
"license": "Apache-2.0",
"author": "P0lip",
"repository": {
"type": "git",
"url": "https://github.com/P0lip/nimma"
},
"scripts": {
"build": "rollup -c",
"lint": "ls-lint && eslint --cache --cache-location .cache/ src && prettier --log-level error --ignore-path .gitignore --check --cache --cache-location .cache/.prettier src",
"test": "mkdir -p coverage; node --test --experimental-test-coverage --test-reporter=lcov --test-reporter=dot --test-reporter-destination=coverage/lcov.info --test-reporter-destination=stdout",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@ls-lint/ls-lint": "^2.2.3",
"eslint": "^9.13.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.0.10",
"iso-bench": "^2.4.7",
"prettier": "^3.3.3",
"rollup": "^4.27.2"
},
"dependencies": {
"astring": "^1.9.0"
}
}