-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "rest-mobiledoc",
"version": "1.0.0",
"main": "src/app.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"commit": "cz",
"release": "dotenv semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"rest",
"mobiledoc"
],
"author": "Sam Texas",
"license": "ISC",
"description": "A simple Express,js-based REST wrapper around mobiledoc that converts HTML and Markdown content into the Mobiledoc format.",
"dependencies": {
"@tryghost/mobiledoc-kit": "^0.12.5-ghost.2",
"body-parser": "^1.20.3",
"express": "^4.21.0",
"jsdom": "^25.0.1",
"marked": "^14.1.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"turndown": "^7.2.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"semantic-release": "^24.2.0",
"supertest": "^7.0.0"
}
}