-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "@siren-js/server",
"version": "0.0.0",
"description": "Siren API server library",
"files": [
"/dist"
],
"main": "dist/index.js",
"scripts": {
"build": "npm run build:lib",
"build:docs": "typedoc ./src",
"build:lib": "npm run clean && npm run compile && npm run lint && npm run format:check",
"clean": "rimraf dist coverage",
"compile": "tsc --project tsconfig.build.json",
"compile:watch": "npm run compile -- --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests",
"test:cov": "npm test -- --coverage",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siren-js/server.git"
},
"keywords": [
"API",
"HATEOAS",
"hypermedia",
"REST",
"RESTful",
"server",
"Siren"
],
"author": "Siren.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/siren-js/server/issues"
},
"homepage": "https://github.com/siren-js/server#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
}
}