-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.74 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
{
"name": "composite-collection",
"version": "2.0.2",
"description": "Composing Maps, WeakMaps, Sets and WeakSets into generated classes",
"scripts": {
"clean": "node ./build/main.mjs clean",
"debug": "node ./build/main.mjs clean debug",
"eslint": "node ./build/main.mjs eslint",
"test": "node ./build/main.mjs clean test",
"all": "node ./build/main.mjs clean test export eslint",
"bootstrap": "node ./build/main.mjs bootstrap",
"bootstrap-build": "node ./build/bootstrap-build.mjs",
"bootstrap-debug": "node --inspect-brk ./build/bootstrap-build.mjs",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajvincent/composite-collection.git"
},
"keywords": [
"collection",
"codegenerator",
"weakmap",
"weakset",
"map",
"set",
"typescript"
],
"author": "Alexander J. Vincent",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ajvincent/composite-collection/issues"
},
"homepage": "https://github.com/ajvincent/composite-collection#readme",
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"argparse": "^2.0.1",
"eslint": "8.25",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "^39.3.13",
"jasmine": "^4.4.0",
"recursive-copy": "^2.0.14",
"which": "^2.0.2"
},
"dependencies": {
"acorn": "^8.8.0",
"typescript": "^4.8.4"
},
"exports": {
"./DefaultMap": "./exports/keys/DefaultMap.mjs",
"./KeyHasher": "./exports/keys/Hasher.mjs",
"./WeakKeyComposer": "./exports/keys/Composite.mjs",
"./CodeGenerator": "./source/CodeGenerator.mjs",
"./Configuration": "./source/CollectionConfiguration.mjs",
"./CompileTimeOptions": "./source/CompileTimeOptions.mjs",
"./Driver": "./source/Driver.mjs",
"./StrongStrongMap": "./exports/StrongStrongMap.mjs",
"./StrongStrongSet": "./exports/StrongStrongSet.mjs",
"./WeakWeakMap": "./exports/WeakWeakMap.mjs",
"./WeakStrongMap": "./exports/WeakStrongMap.mjs",
"./WeakWeakSet": "./exports/WeakWeakSet.mjs",
"./WeakStrongSet": "./exports/WeakStrongSet.mjs",
"./StrongMapOfStrongSets": "./exports/StrongMapOfStrongSets.mjs",
"./WeakMapOfStrongSets": "./exports/WeakMapOfStrongSets.mjs",
"./OneToOneSimpleMap": "./exports/OneToOneSimpleMap.mjs",
"./OneToOneStrongMap": "./exports/OneToOneStrongMap.mjs",
"./OneToOneWeakMap": "./exports/OneToOneWeakMap.mjs"
},
"imports": {
"#build/*": "./build/*",
"#source/*": "./source/*",
"#spec/*": "./spec/*",
"#support/*": "./spec/support/*"
},
"files": [
"exports/**",
"source/**",
"templates/**"
]
}