forked from samchon/tstl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.43 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.43 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
98
{
"name": "tstl",
"description": "TypeScript-STL (Standard Template Library, migrated from C++)",
"author": {
"name": "Jeongho Nam",
"email": "samchon.github@gmail.com",
"url": "https://github.com/samchon"
},
"version": "2.5.6",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"api": "typedoc src --exclude \"**/+(test|benchmark)/**\" --excludeNotDocumented --plugin typedoc-plugin-external-module-name --plugin typedoc-plugin-exclude-references --out ../tstl@gh-pages/api",
"migration": "ts-node build/migration",
"benchmark": "node benchmark",
"build": "npm run clean && npm run module && npm run compile && npm run test",
"clean": "ts-node build/clean",
"compile": "tsc",
"dev": "tsc --watch",
"dev:ts": "tsc --watch --noEmit --module esnext",
"module": "tsc --noEmit --module amd && tsc --noEmit --module system && tsc --noEmit --module umd && tsc --noEmit --module esnext",
"package": "npm run build && ts-node build/dist && cd dist && npm publish",
"package:next": "npm run package -- --tag next",
"test": "node dist/test",
"test:ts": "ts-node src/test"
},
"devDependencies": {
"@types/cli": "^0.11.19",
"@types/node": "^14.6.3",
"cli": "^1.0.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"homepage": "https://github.com/samchon/tstl",
"repository": {
"type": "git",
"url": "https://github.com/samchon/tstl"
},
"bugs": {
"url": "https://github.com/samchon/tstl/issues"
},
"license": "MIT",
"keywords": [
"tstl",
"typecript",
"c++",
"cpp",
"stl",
"standard template library",
"algorithm",
"container",
"exception",
"functional",
"iterator",
"numeric",
"ranges",
"thread",
"utility",
"base",
"experimental",
"internal",
"Vector",
"Deque",
"List",
"VectorBoolean",
"ForwardList",
"Stack",
"Queue",
"PriorityQueue",
"FlatMap",
"FlatMultiMap",
"FlatMultiSet",
"FlatSet",
"HashMap",
"HashMultiMap",
"HashMultiSet",
"HashSet",
"TreeMap",
"TreeMultiMap",
"TreeMultiSet",
"TreeSet",
"ConditionVariable",
"Semaphore",
"Latch",
"Barrier",
"FlexBarrier",
"Mutex",
"TimedMutex",
"SharedMutex",
"SharedTimedMutex",
"SharedLock",
"UniqueLock",
"Singleton"
]
}