-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.99 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.99 KB
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
102
103
104
105
106
107
{
"name": "alamode",
"version": "3.7.1",
"description": "A Regex-Based Transpiler Of Source Code To Allow Writing Import And Export Statements And JSX With 0 Dependencies.",
"main": "compile/index.js",
"scripts": {
"t": "zoroaster -a",
"test": "yarn t test/spec test/mask",
"spec": "yarn t test/spec",
"mask": "yarn t test/mask",
"test-compile": "yarn t test/mask/bin.js",
"lint": "eslint .",
"dev": "NODE_DEBUG=alamode node src/bin",
"doc": "doc -o README.md -d -a",
"e": "alanode",
"example/": "yarn e example/example.js",
"build": "yarn-s b doc",
"wiki": "doc wiki -W wiki.git -d -a",
"d": "yarn-s template d1 externs",
"d1": "typal types/index.js compile/index.js -u",
"template": "typal compile/template.js -T compile/index.js -t types/api.xml",
"externs": "typal types/externs.js",
"compile": "depack src/bin/alamode -c -a -p -o compile/bin --externs types/externs.js -s -S",
"lib": "depack src/depack -c -a -p -o compile/alamode.js -s --source_map_include_content",
"depack": "yarn-s compile lib",
"alamode": "compile/bin/alamode.js",
"args": "argufy types/arguments/index.xml types/arguments/jsx.xml -o src/bin/get-args.js",
"b": "compile/bin/alamode.js src/bin/alanode.js -o build -s",
"ba": "compile/bin/alamode.js src -o alamode -s"
},
"bin": {
"alamode": "compile/bin/alamode.js",
"alamode-dev": "src/bin/index.js",
"alanode": "build/alanode.js"
},
"files": [
"build",
"src/bin/index.js",
"compile",
"types",
"typedefs.json"
],
"repository": {
"type": "git",
"url": "git://github.com/a-la/alamode.git"
},
"typedefs": "typedefs.json",
"keywords": [
"alamode",
"transpiler",
"transpile",
"compiler",
"compile",
"import",
"export",
"exports",
"module",
"default",
"require",
"a-la",
"regular expression",
"es6 modules",
"es6",
"modules",
"regex",
"regexp",
"babel",
"ECMAScript",
"ecma",
"jsx",
"components"
],
"author": "Anton <anton@adc.sh>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/a-la/alamode/issues"
},
"homepage": "https://www.artd.eco",
"devDependencies": {
"@a-la/export": "^1.5.0",
"@a-la/fixture-alamode": "1.1.3",
"@a-la/fixture-babel": "1.2.2",
"@a-la/import": "^1.12.0",
"@a-la/jsx": "^1.7.2",
"@a-la/markers": "^1.3.0",
"@a-la/source-map-generator": "^1.0.1",
"@artdeco/pirates": "^1.0.0",
"@wrote/clone": "^1.2.1",
"@wrote/ensure-path": "^1.1.0",
"@wrote/read-dir-structure": "^1.3.1",
"@wrote/wrote": "^1.2.3",
"argufy": "^1.7.5",
"catchment": "^3.3.0",
"depack": "^1.1.2",
"documentary": "^1.37.1",
"erte": "^1.2.0",
"eslint-config-artdeco": "1.0.1",
"restream": "^3.7.4",
"spawncommand": "^2.2.0",
"temp-context": "^2.1.3",
"typal": "^1.26.2",
"usually": "^1.2.0",
"which-stream": "^1.2.1",
"yarn-s": "1.2.3",
"zoroaster": "^4.3.0"
}
}