-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "json-api-models",
"description": "A lightweight layer for working with JSON:API data.",
"version": "0.2.0-beta.10",
"author": "Toby Zerner",
"license": "MIT",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.es.js",
"types": "./dist/index.d.ts"
},
"files": [
"src",
"dist",
"README.md",
"!**/.DS_Store"
],
"scripts": {
"test": "jest",
"build": "rollup -c && tsc --emitDeclarationOnly --declaration",
"release": "release-it --npm.tag=latest"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^26.0.20",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"release-it": "^17.2.1",
"rollup": "^4.17.2",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md",
"addUnreleased": true,
"addVersionUrl": true
}
},
"hooks": {
"after:bump": "npm run build"
}
},
"prettier": {
"singleQuote": true
},
"packageManager": "pnpm@9.1.0+sha512.67f5879916a9293e5cf059c23853d571beaf4f753c707f40cb22bed5fb1578c6aad3b6c4107ccb3ba0b35be003eb621a16471ac836c87beb53f9d54bb4612724"
}