-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.45 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
{
"name": "serene-front",
"type": "commonjs",
"version": "0.2.1",
"description": "Glue together JavaScript RESTful API clients",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
},
"./collections": {
"types": "./dist/lib/collections/index.d.ts",
"default": "./dist/lib/collections/index.js"
},
"./data": {
"types": "./dist/lib/data/index.d.ts",
"default": "./dist/lib/data/index.js"
},
"./urls": {
"types": "./dist/lib/urls/index.d.ts",
"default": "./dist/lib/urls/index.js"
}
},
"files": [
"dist/lib"
],
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "npx rimraf dist",
"build": "npx tsc",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decarbonization/serene-front.git"
},
"keywords": [
"restful",
"client",
"api"
],
"author": "P. Kevin Contreras",
"license": "MIT",
"bugs": {
"url": "https://github.com/decarbonization/serene-front/issues"
},
"homepage": "https://github.com/decarbonization/serene-front#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20.0",
"npm": ">=10.5.0"
}
}