-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "api-entity",
"version": "1.5.1",
"description": "Create service entities according to your API agnostic to the framework you are using",
"sideEffects": false,
"exports": {
".": {
"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": "pnpm unbuild",
"lint": "eslint --ext .ts,.js,.mjs,.cjs .",
"test": "jest",
"test:watch": "jest --watch",
"prepack": "pnpm unbuild",
"release": "standard-version && git push --follow-tags && pnpm publish",
"docs:start": "cd docs && pnpm start",
"docs:build": "cd docs && pnpm build",
"docs:deploy": "cd docs && pnpm run deploy"
},
"keywords": [
"axios",
"fetch",
"agnostic",
"ajax",
"http",
"promise",
"model",
"api",
"entity",
"typescript"
],
"author": {
"name": "jhony-v",
"url": "https://github.com/jhony-v"
},
"repository": {
"type": "git",
"url": "https://github.com/jhony-v/api-entity"
},
"bugs": {
"url": "https://github.com/jhony-v/api-entity/issues"
},
"homepage": "https://jhony-v.github.io/api-entity/",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3",
"unbuild": "^1.0.1"
}
}