-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "cube-package",
"version": "1.2.4",
"description": "An NPM package to render markdown",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/ishubham21/cube-package.git"
},
"homepage": "https://github.com/ishubham21/cube-package#readme",
"author": "Shubham Gautam <https://meshubham.live>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "rm -rf ./dist && tsc",
"format": "prettier --write \"**/*.{js,ts}\"",
"lint": "eslint \"**/*.{js,ts}\" --quiet",
"lint:fix": "eslint \"**/*.{js,ts}\" --fix",
"publish:npm": "chmod +x scripts/publish.sh && scripts/publish.sh"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-jest": "^28.1.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-loops": "^0.3.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"keywords": [
"markdown",
"parser",
"markdown parser",
"blob",
"generate",
"markdown-it",
"pluggable"
],
"publishConfig": {
"registry": "https://registry-url"
}
}