-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"name": "jsona",
"version": "1.14.0",
"description": "Provide data formatters (data model builder & json builder) to work with JSON API specification v1.0 in your JavaScript / TypeScript code",
"keywords": [
"json-api",
"jsonapi",
"json:api",
"json-api-redux",
"json api redux",
"json-api angular",
"json api typescript",
"data formatter",
"data converter",
"data serializer",
"formatter",
"converter",
"serializer",
"json api json",
"json",
"redux-object",
"rest",
"rest api",
"graphql",
"graphql alternative",
"json-api-normalizer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/olosegres/jsona.git"
},
"bugs": {
"url": "https://github.com/olosegres/jsona/issues"
},
"homepage": "https://github.com/olosegres/jsona#readme",
"author": "Sergei Solo <olosegres@gmail.com>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
}
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rm -rf ./lib/*",
"prebuild": "npm run clean",
"build": "rollup --config rollup.config.js",
"test": "env NODE_ENV=test node --import tsx --test tests/**/*.test.*",
"preversion": "npm run build && npm test"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.8",
"chai": "^5.2.0",
"rollup": "^4.34.9",
"tslib": "^2.8.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}