-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 999 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
{
"name": "markmap-bundle",
"version": "1.0.0",
"description": "Bundling Markmap in one file",
"main": "rollup.config.js",
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c --environment BUILD:production",
"watch": "rollup -c -w",
"pretest": "rollup -c",
"prepublish": "BUILD=production npm test"
},
"repository": "ldubost/markmap-lib-bundle",
"keywords": [
"es6",
"modules",
"rollup",
"bundle",
"browser"
],
"author": "Ludovic Dubost",
"license": "MIT",
"files": [
"dist"
],
"homepage": "https://github.com/ldubost/markmap-lib-bundle#readme",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"markmap-lib": "^0.7.11",
"rollup": "^2.18.1",
"rollup-plugin-closure-compiler-js": "^1.0.6",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0"
}
}