-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1015 Bytes
/
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
{
"name": "@cutting/rollup-plugin-md",
"version": "0.3.1",
"description": "a rollup plugin for markdown files",
"main": "dist/index.js",
"module": "dist/rollup-plugin-md.esm.js",
"browser": "dist/rollup-plugin-md.esm.js",
"types": "dist/md.d.ts",
"scripts": {
"test": "NODE_ENV=test cutting test",
"test:ci": "CI=true NODE_ENV=test cutting test",
"build": "NODE_ENV=production cutting rollup",
"prebuild": "rm -rf dist/*",
"prepublish": "yarn build"
},
"files": [
"dist"
],
"keywords": [
"rollup",
"plugin",
"md",
"markdown"
],
"author": "Paul Cowan <[email protected]>",
"license": "ISC",
"dependencies": {
"marked": "^2.0.3",
"rollup": "^2.35.1",
"@rollup/pluginutils": "^4.1.0"
},
"devDependencies": {
"@cutting/devtools": "^4.2.0",
"@cutting/eslint-config": "^4.2.0",
"@types/marked": "^1.2.1",
"assert": "^2.0.0",
"eslint": "^7.16.0",
"source-map-support": "^0.5.19"
},
"type": "module"
}