forked from breck7/scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "scroll-cli",
"version": "52.2.1",
"description": "Tools for thought.",
"main": "scroll.js",
"engines": {
"node": ">=14.0"
},
"scripts": {
"build": "scroll list | scroll build",
"buildCoverageReport": "tap tests/scroll.test.js",
"buildCoverageHtmlReport": "tap tests/scroll.test.js --coverage-report=lcov",
"open": "open index.html",
"test": "node tests/scroll.test.js",
"cloc": "cloc --vcs git . --read-lang-def=tests/clocLangs.txt"
},
"bin": {
"scroll": "./scroll.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/breck7/scroll.git"
},
"author": "Breck Yunits",
"bugs": {
"url": "https://github.com/breck7/scroll/issues"
},
"prettier": {
"useTabs": false,
"tabWidth": 2,
"semi": false,
"printWidth": 240
},
"homepage": "https://github.com/breck7/scroll#readme",
"dependencies": {
"dayjs": "^1.10.4",
"image-size": "^1.0.0",
"jtree": "^62.2.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"open": "^8.0.5",
"tap": "^16.3.0"
}
}