-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "bi-directional-map",
"version": "1.0.0",
"description": "Simple bi directional map implementation using 2 es6 maps",
"main": "dist/index.ts",
"scripts": {
"build": "tsc",
"start": "tsc -w",
"test": "karma start karma.config.js --single-run",
"lint": "tslint \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/harunurhan/bi-directional-map.git"
},
"keywords": [
"bidirectionalmap",
"bimap",
"2waymap",
"library",
"typescript"
],
"author": "Harun Urhan <harunurhan17@gmail.com> (http://github.com/harunurhan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/harunurhan/bi-directional-map/issues"
},
"homepage": "https://github.com/harunurhan/bi-directional-map#readme",
"devDependencies": {
"@types/jasmine": "^2.5.54",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-typescript": "^3.0.5",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}