-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.28 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
{
"name": "pathtrace",
"version": "1.0.0",
"description": "Simplifies working with nested objects and arrays by providing easy methods to retrieve, set, and check values at any path.",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:types": "tsc --emitDeclarationOnly -p tsconfig.json",
"build:js": "rollup -c",
"build": "rimraf ./dist && cross-env NODE_ENV=production npm run build:js && npm run build:types",
"test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint --ext .js,.vue,.ts ./src ./test",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"path",
"path-info",
"path-value",
"expand-path",
"path-retrival",
"get-path",
"nested-objects",
"deep-access"
],
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tada5hi/pathtrace.git"
},
"bugs": {
"url": "https://github.com/tada5hi/pathtrace/issues"
},
"homepage": "https://github.com/tada5hi/pathtrace#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-swc": "^0.4.0",
"@swc/jest": "^0.2.36",
"@tada5hi/commitlint-config": "^1.2.2",
"@tada5hi/eslint-config-typescript": "^1.2.12",
"@tada5hi/semantic-release": "^0.3.1",
"@tada5hi/tsconfig": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.4",
"@types/pathval": "^1.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.37.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"rollup": "^4.24.0",
"semantic-release": "^22.0.12",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}