-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "com.streamsimple.tscollections",
"version": "2.12.0",
"description": "A collections library for typescript with support for equals and hashcode.",
"main": "index.ts",
"scripts": {
"test": "mocha --reporter spec --compilers ts:ts-node/register 'src/**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StreamSimple/tscollections.git"
},
"keywords": [
"collections",
"datastructures"
],
"author": "StreamSimple, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/StreamSimple/tscollections/issues"
},
"homepage": "https://github.com/StreamSimple/tscollections#readme",
"dependencies": {
"com.streamsimple.tsnumbers": "^1.5.0",
"typescriptcollectionsframework": "^4.2.2",
"core-js": "^2.4.1",
"rxjs": "^5.5.6"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/es6-shim": "^0.31.37",
"@types/mocha": "^5.2.5",
"@types/node": "10.3.6",
"chai": "^4.1.2",
"es6-shim": "^0.35.3",
"mocha": "^5.2.0",
"ts-node": "~4.1.0",
"typescript": "~2.5.3"
}
}