-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "slimdown-js",
"version": "1.0.0",
"source": "src/index.ts",
"main": "dist/slimdown.cjs",
"module": "dist/slimdown.module.mjs",
"exports": {
"require": "./dist/slimdown.cjs",
"default": "./dist/slimdown.modern.mjs"
},
"unpkg": "dist/slimdown.umd.js",
"typings": "dist/index.d.ts",
"type": "module",
"description": "A regex-based Markdown parser.",
"repository": {
"type": "git",
"url": "git+https://github.com/erikvullings/slimdown-js.git"
},
"keywords": [
"markdown",
"regex",
"parser",
"lightweight",
"slim",
"typescript"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikvullings/slimdown-js/issues"
},
"homepage": "https://github.com/erikvullings/slimdown-js#readme",
"scripts": {
"test": "ava --watch src/slimdown.test.ts",
"clean": "rimraf .rpt2_cache dist lib",
"build": "microbundle src/index.ts",
"start": "tsc -w -p tsconfig.json",
"dry-run": "npm publish --dry-run",
"patch": "npm run clean && npm run build && npm version patch --force -m \"Patch release\" && npm publish && git push --follow-tags",
"minor": "npm run clean && npm run build && npm version minor --force -m \"Minor release\" && npm publish && git push --follow-tags",
"major": "npm run clean && npm run build && npm version major --force -m \"Major release\" && npm publish && git push --follow-tags"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"ava": "^6.2.0",
"microbundle": "^0.15.1",
"rimraf": "^6.0.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
}
}
}