-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "smapper",
"version": "0.0.9",
"author": "David Arenas (davejs136@gmail.com)",
"description": "Mapper function to transform the Strapi API response",
"bugs": {
"url": "https://github.com/Dave136/smapper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dave136/smapper.git"
},
"type": "module",
"keywords": [
"strapi",
"frontend",
"mapper",
"response",
"transform",
"util"
],
"main": "./dist/index.mjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"watch": "npm run build -- --watch src",
"test": "vitest",
"lint": "prettier -c src test",
"lint:fix": "prettier -c src test -w",
"prepack": "pnpm run build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"coverage": "pnpm lint && vitest run --coverage"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/underscore": "^1.11.6",
"@vitest/coverage-v8": "0.33.0",
"changelogen": "0.5.4",
"prettier": "3.0.0",
"tsup": "7.1.0",
"typescript": "5.1.6",
"vitest": "0.33.0"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"underscore": "^1.13.6"
}
}