-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "scroll-cli",
"version": "164.12.0",
"description": "A language for scientists of all ages. A curated collection of tools for refining and sharing thoughts.",
"main": "scroll.js",
"engines": {
"node": ">=18.0"
},
"scripts": {
"beta": "cp ~/sdk/products/*.js node_modules/scrollsdk/products",
"build": "node ./scroll.js list | node ./scroll.js build",
"coverage": "tap tests/scroll.test.js",
"format": "scroll list | scroll format",
"open": "open index.html",
"debug": "node --inspect tests/scroll.test.js;",
"test": "node tests/scroll.test.js",
"up": "npm install scrollsdk@latest"
},
"bin": {
"scroll": "./scroll.js",
"clone": "./clone.js"
},
"files": [
"scroll.js",
"ScrollSetCLI.js",
"simpleCli.js",
"parsers/",
"external/",
"microlangs/",
"stripeBuyButton.scroll",
"header.scroll"
],
"repository": {
"type": "git",
"url": "git+https://github.com/breck7/scroll.git"
},
"author": "Breck Yunits",
"prettier": {
"parser": "babel",
"useTabs": false,
"tabWidth": 2,
"semi": false,
"printWidth": 240,
"trailingComma": "none",
"arrowParens": "avoid",
"quoteProps": "as-needed"
},
"homepage": "https://scroll.pub",
"dependencies": {
"d3": "^6.7.0",
"dayjs": "^1.11.7",
"image-size": "^1.0.2",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"scrollsdk": "^100.1.1"
},
"devDependencies": {
"prettier": "^2.8.8",
"tap": "^18.7.2"
}
}