-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.48 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
{
"name": "packdownjs",
"version": "0.9.99",
"author": "Ivan Malopinsky",
"license": "MIT",
"description": "Files in Markdown",
"main": "dist/packdown.js",
"bin": {
"packdown": "node/cli.js"
},
"scripts": {
"build": "rollup --config",
"format": "prettier --single-quote --write src/**/*",
"lint": "eslint src/**/*",
"posttest": "npm run lint",
"prebuild": "rm -rf dist/*",
"prepublish": "npm run format && npm run build",
"test": "nyc ${NYC_FLAGS} mocha './test/*-test.js'"
},
"keywords": [
"markdown",
"pack",
"file",
"collection",
"template",
"boilerplate",
"scaffold",
"gist",
"fiddle"
],
"bugs": {
"url": "https://github.com/imsky/packdown/issues"
},
"homepage": "https://github.com/imsky/packdown",
"repository": {
"type": "git",
"url": "https://github.com/imsky/packdown.git"
},
"dependencies": {},
"devDependencies": {
"chai": "4.2.0",
"eslint": "7.11.0",
"mocha": "8.2.0",
"nyc": "15.1.0",
"reify": "0.20.12",
"prettier": "1.17.1",
"rollup": "1.32.1",
"rollup-plugin-banner": "0.2.0",
"@rollup/plugin-buble": "0.21.3",
"@rollup/plugin-replace": "2.3.4",
"rollup-plugin-uglify": "6.0.4"
},
"nyc": {
"check-coverage": true,
"branches": 100,
"exclude": ["dist/**", "test/**"]
},
"engines": {
"node": ">=12.0.0"
},
"build": {
"name": "packdown",
"friendlyName": "Packdown",
"summary": "files in Markdown"
}
}