-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.57 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
{
"name": "class-mongo",
"description": "Mongo storage for class entities",
"author": {
"name": "Alexander Kit",
"email": "alex.kit@atmajs.com"
},
"version": "5.0.1",
"main": "./lib/class-mongo.js",
"types": "./lib/class-mongo.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/atmajs/class-mongo.git"
},
"devDependencies": {
"@types/sinon": "^2.3.3",
"app-bundler": "^0.1.14",
"atma": "^0.15.17",
"atma-loader-ts": "^1.1.19",
"dts-bundle": "^0.7.3",
"typedoc": "^0.21.4",
"typescript": "^4.9.5"
},
"scripts": {
"test": "atma test",
"build": "app-bundler && npm run build-dts",
"watch": "app-bundler --watch",
"server": "atma server",
"build-dts": "tsc -p tsconfig-build.json && atma run tools/build-dts",
"release": "echo \"Run atma pub -m \"message\"\"",
"typedoc": "typedoc"
},
"license": "MIT",
"app-bundler": {
"file": "src/export.ts",
"outputMain": "lib/class-mongo.js",
"package": {
"module": "commonjs",
"moduleName": "class-mongo",
"moduleWrapper": "umd",
"commonjs": {
"output": "simplified"
}
},
"defaultExtensions": {
"js": "ts"
},
"middlewares": {
"ts": [
"atma-loader-ts:read"
]
},
"dynamicDependencies": [
"^mongodb",
"^atma-utils",
"^class-json",
"^memd"
]
},
"atma": {
"plugins": [
"atma-loader-ts"
],
"settings": {
"include": {
"amd": true,
"extentionDefault": {
"js": "ts"
}
},
"atma-loader-ts": {
"typescript": {
"compilerOptions": {
"target": "es2018",
"#if (TEST)": {
"module": "AMD"
},
"#if (!TEST)": {
"module": "CommonJS"
}
}
}
}
}
},
"dependencies": {
"@types/mongodb": "^4.0.7",
"alot": "^0.2.93",
"atma-utils": "^0.2.51",
"class-mongo": "^0.3.7",
"memd": "^0.3.12",
"mongodb": "^5.1.0"
},
"peerDependencies": {
"class-json": "^0.3.6"
}
}