-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "jsonapi-transformers",
"version": "0.0.0",
"description": "Typescript-based JSON API serialisation/deserialisation",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js"
],
"types": "./lib/mjs/index.d.ts",
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"scripts": {
"build": "rm -fr lib/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./scripts/fixup",
"format:prettier": "prettier --write .",
"format": "npm run format:prettier",
"lint:eslint": "eslint ./src ./spec",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:eslint && npm run lint:prettier",
"prepare": "npm run build",
"test": "jest",
"validate_jsonapi_examples": "node validate-jsonapi-examples.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junglebarry/jsonapi-transformers.git"
},
"keywords": [
"Typescript",
"JSON",
"API",
"serialisation"
],
"author": "David James Brooks",
"license": "MIT",
"bugs": {
"url": "https://github.com/junglebarry/jsonapi-transformers/issues"
},
"homepage": "https://github.com/junglebarry/jsonapi-transformers#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.0.0",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.0.0",
"glob": "^11.0.0",
"jest": "^29.0.0",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=14 <23"
}
}