-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.91 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
102
103
{
"name": "app-bundler",
"version": "0.2.17",
"description": "",
"main": "lib/bundler.js",
"bin": {
"app-bundler": "index.js"
},
"scripts": {
"test": "atma test",
"watch": "atma run tools/build --watch",
"build": "atma run tools/build && atma run tools/build --cli && npm run cp",
"cp": "copy \"lib\\cli.js\" \"D:\\eth\\0xweb\\node_modules\\app-bundler\\lib\\cli.js\"",
"server": "atma server",
"release": "echo \"Run atma pub -m \"message\"\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/atmajs/app-bundler.git"
},
"keywords": [
"module",
"commonjs",
"includejs",
"bundle",
"build",
"package",
"compiler"
],
"author": "Alex Kit",
"license": "MIT",
"bugs": {
"url": "https://github.com/atmajs/app-bundler/issues"
},
"homepage": "https://github.com/atmajs/app-bundler",
"dependencies": {
"alot": "^0.3.0",
"appcfg": "^0.4.64",
"atma-class": "^1.1.83",
"atma-io": "^1.2.73",
"atma-logger": "^1.0.2",
"atma-utils": "^0.1.13",
"axios": "^0.21.0",
"cheerio": "^0.20.0",
"includejs": "^0.17.6",
"maskjs": "^0.72.37",
"memd": "^0.3.10",
"shellbee": "^0.5.22",
"uglify-js": "^3.13.10"
},
"atma": {
"plugins": [
"atma-loader-ts",
"atma-io-middleware-importer"
],
"settings": {
"include": {
"amd": true,
"extentionDefault": {
"js": "ts"
}
},
"io": {
"extensions": {
"js": [
"atma-io-middleware-importer:read"
],
"ts": [
"atma-io-middleware-importer:read",
"atma-loader-ts:read"
]
}
},
"atma-loader-ts": {
"typescript": {
"compilerOptions": {
"noEmitHelpers": true,
"importHelpers": true,
"lib": [
"ES2019"
],
"target": "ES2019",
"#if (TEST)": {
"module": "AMD"
},
"#if (!TEST)": {
"module": "CommonJS"
}
}
}
}
}
},
"devDependencies": {
"@types/node": "^8.5.2",
"atma": "^0.15.15",
"atma-io-middleware-importer": "^1.1.38",
"atma-loader-ts": "^1.2.4",
"selenium-query": "^0.52.59",
"tslib": "^1.11.1",
"uglify-es": "^3.3.9"
}
}