-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.27 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "atma",
"description": "Atma.Toolkit",
"preferGlobal": true,
"author": {
"name": "Alexander Kit",
"email": "alex.kit@atmajs.com"
},
"version": "0.15.24",
"bin": {
"atma": "index.js"
},
"dependencies": {
"alot": "^0.2.99",
"appcfg": "^0.4.65",
"atma-class": "^1.1.72",
"atma-io": "^1.2.56",
"atma-io-middleware-yml": "latest",
"atma-libs": "^0.9.75",
"atma-logger": "^1.0.2",
"atma-server": "^0.5.25",
"atma-utest": "^0.21.28",
"atma-utils": "^0.2.53",
"body-parser": "~1.4.3",
"includejs": "^0.17.6",
"maskjs": "^0.72.36",
"openurl": "~1.1.0",
"ruta": "^0.2.32",
"shellbee": "^0.5.22"
},
"scripts": {
"build": "app-bundler",
"watch": "app-bundler -watch",
"release": "echo \"Run atma pub -m \"message\"\"",
"test": "atma test"
},
"repository": {
"type": "git",
"url": "git://github.com/atmajs/Atma.Toolkit.git"
},
"license": "MIT",
"devDependencies": {
"app-bundler": "^0.1.1",
"atma-loader-ts": "^1.1.16"
},
"app-bundler": {
"apps": {
"cli": {
"file": "src/cli.ts",
"outputMain": "lib/cli.js"
}
},
"common": {
"package": {
"module": "commonjs",
"commonjs": {
"output": "simplified"
}
},
"extensions": {
"io": {
"type": "js"
}
},
"defaultExtensions": {
"js": "ts"
},
"dynamicDependencies": [
"shellbee",
"everlog",
"memd",
"maskjs",
"appcfg",
"alot",
"atma-io",
"atma-utils",
"atma-libs",
"includejs",
"atma-class",
"atma-server",
"ruta",
"^path$",
"^http$",
"^https$",
"^url$",
"child_process",
"atma-logger",
"readline",
"body-parser"
],
"middlewares": {
"ts": [
"atma-loader-ts:read"
]
}
}
},
"atma": {
"plugins": [
"atma-loader-ts"
],
"settings": {
"atma-utest": {
"include": {
"amd": true
}
},
"include": {
"amd": true,
"extentionDefault": {
"js": "ts"
}
},
"atma-loader-ts": {
"typescript": {
"compilerOptions": {
"#if (TEST)": {
"module": "AMD"
},
"#if (!TEST)": {
"module": "commonjs"
},
"sourceMap": false
}
}
}
}
}
}