-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "bracket_print",
"main": "build/bracket_print_umd.js",
"version": "0.12.0",
"description": "Comprehensive logging, printing and serialization for ECMA script.",
"license": "LGPL-3.0",
"scripts": {
"test": "mocha",
"build_config": "build_umd --config-file uglify_option.json",
"build_umd": "r_js -o ./rjs_build_first.js && r_js -o ./rjs_build_second.js suffix=\"_umd\"",
"build_amd": "r_js -o ./rjs_build_first.js && r_js -o ./rjs_build_second.js",
"build_example": "r_js -o ./example/rjs_build_example.js",
"build": "npm run build_config && npm run build_umd && npm run build_amd && npm run build_example",
"make_docs": "brace_document --navlink --link --link-dest ../Readme.md --link-path ../docs/synopsis.md -r -i docs --force-title --title \"Bracket Print help pages\" --sort depth --specification --mocha"
},
"dependencies": {
"brace_option": "^0.5.4"
},
"devDependencies": {
"amdefine": "^1.0.1",
"brace_maybe": "^0.1.3",
"brace_umd": "^0.11.6",
"bracket_utils": "^0.3.0",
"chai": "^4.2.0",
"intercept-stdout": "^0.1.2",
"mocha": "^7.0.0",
"requirejs": "^2.3.5",
"serialize-javascript": "^2.1.1"
},
"optionalDependencies": {
"brace_document": "^1.1.8",
"brace_document_link": "^1.1.9",
"brace_document_mocha": "^1.1.0",
"brace_document_navlink": "^1.1.12",
"brace_document_specification": "^1.2.2"
},
"directories": {},
"keywords": [
"printing",
"console",
"logging",
"eval",
"serialize"
],
"author": {
"name": "Robert Steckroth",
"email": "[email protected]",
"url": "https://restarian.xyz"
},
"maintainers": [
{
"name": "nickali",
"email": "[email protected]"
}
],
"readmeFilename": "README.md",
"engines": {
"node": ">=0.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/restarian/bracket_print.git"
},
"technologies": [
{
"name": "VIM",
"description": "As an IDE",
"url": "https://www.vim.org"
},
{
"name": "Windows 10",
"description": "For unit testing and as the base operating system",
"url": "https://www.microsoft.com/en-us/software-download/windows10"
},
{
"name": "Ubuntu on Windows",
"description": "As the development operating environment",
"url": "https://www.microsoft.com/en-us/store/p/ubuntu/9nblggh4msv6"
},
{
"name": "Git",
"description": "For repository management",
"url": "https://git-scm.com"
},
{
"name": "Github",
"description": "For repository storage",
"url": "https://github.com"
},
{
"name": "NPM",
"description": "For module storage",
"url": "https://npmjs.org"
},
{
"name": "Blender",
"description": "For logo design and rendering",
"url": "https://blender.org"
}
]
}