-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.38 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.38 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
{
"name": "depack",
"version": "1.1.2",
"description": "Proper Node.JS Package Compiler (And Front-End Code Bundler) With Closure Compiler. Can create a single executable JS file and merge and optimise all dependencies.",
"main": "compile/index.js",
"scripts": {
"t": "zoroaster -a -t 60000",
"test": "yarn t test/mask",
"spec": "yarn t test/spec",
"mask": "yarn t test/mask",
"test-compile": "ALAMODE_ENV=test-compile yarn test",
"lint": "eslint .",
"dev": "node src",
"doc": "doc -o README.md -d -a",
"wiki": "DEPACK_MAX_COLUMNS=80 doc wiki -W wiki.git -d -a",
"compile": "yarn dev src/depack -c -o compile -a -p -s --externs types/externs.js",
"depack": "compile/depack.js src/depack -c -o build -a -p -s",
"e": "node example",
"example/": "yarn e example/example.js",
"args": "argufy types/arguments/index.xml types/arguments/bundle.xml types/arguments/compile.xml -o src/get-args.js"
},
"files": [
"compile",
"externs",
"preact",
"inject-css.js",
"src/index.js"
],
"bin": {
"depack": "compile/depack.js",
"depack-dev": "src/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/dpck/depack.git"
},
"keywords": [
"depack",
"packager",
"bundler",
"frontend",
"webpack",
"rollup",
"browserify"
],
"author": "Anton <anton@adc.sh>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/dpck/depack/issues"
},
"homepage": "https://www.compiler.page",
"devDependencies": {
"@a-la/fixture-babel": "^1.2.2",
"@a-la/jsx": "^1.6.3",
"@depack/bundle": "^1.4.1",
"@depack/depack": "^2.2.1",
"@depack/detect": "^1.1.0",
"@depack/split": "^1.0.0",
"@wrote/wrote": "^1.2.3",
"alamode": "^3.5.2",
"argufy": "^1.7.5",
"catchment": "^3.3.0",
"clearr": "^1.0.0",
"documentary": "^1.37.0",
"erte": "^1.2.0",
"eslint-config-artdeco": "1.0.1",
"fpj": "^1.3.1",
"frame-of-mind": "^1.2.3",
"indicatrix": "^1.4.1",
"preact": "10.3.2",
"resolve-dependency": "^1.0.3",
"spawncommand": "^2.2.0",
"static-analysis": "^2.1.1",
"temp-context": "^2.1.3",
"usually": "^1.2.0",
"yarn-s": "1.2.3",
"zoroaster": "^4.3.0"
},
"peerDependencies": {
"google-closure-compiler-java": "*"
},
"dependencies": {
"@depack/nodejs": "^1.1.4",
"@externs/nodejs": "^1.5.0"
}
}