-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
72
73
74
75
{
"name": "@razroo/razroo-markdown-engine",
"version": "1.4.7",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"repository": {
"type": "git",
"url": "https://github.com/razroo/razroo-markdown-engine.git"
},
"scripts": {
"test": "jest --runInBand --config jest.config.js",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"watch": "tsc -w",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"author": "Charlie Greenman <charlie@razroo.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@razroo/razroo-remark-embed-code": "^2.0.1",
"@razroo/razroo-remark-netlify": "1.2.3",
"dotenv": "8.2.0",
"micromatch": "4.0.2",
"remark": "11.0.0",
"remark-autolink-headings": "6.0.1",
"remark-html": "13.0.1",
"remark-parse": "9.0.0",
"remark-prism": "1.3.6",
"remark-slug": "6.0.0",
"remark-stringify": "9.0.1",
"remark-variables": "1.4.9",
"to-vfile": "6.1.0",
"url": "0.11.0",
"vfile-reporter": "6.0.2",
"yargs": "16.1.1"
},
"devDependencies": {
"@types/jest": "26.0.19",
"@types/node": "14.14.16",
"@types/remark-prism": "^1.3.7",
"@types/yargs": "15.0.12",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"eslint": "7.16.0",
"jest": "^29.7.0",
"prettier": "2.2.1",
"ts-jest": "^29.1.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "^4.0.3"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
}
}