-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "@vanillaes/markdown",
"version": "0.0.0",
"description": "A modern, fast, markdown parser",
"keywords": [
"wip"
],
"license": "MIT",
"author": "Evan Plaice <[email protected]> (http://evanplaice.com/)",
"repository": "http://github.com/vanillaes/markdown/",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"browser": "./index.min.js"
}
},
"types": "index.d.ts",
"scripts": {
"test": "tape-es",
"test:watch": "tape-watch-es",
"lint": "esmtk lint",
"types": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --noEmit",
"build": "npm run build:min && npm run build:typings",
"build:min": "esmtk minify index.js index.min.js",
"build:typings": "npx -p typescript tsc index.js -t esnext --allowJS --checkJS --skipLibCheck --declaration --emitDeclarationOnly --noEmitOnError",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm test && npm run lint",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"esmtk": "^0.5.13",
"tape-es": "^1.2.16"
},
"engines": {
"node": ">=14"
}
}