-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
89 lines (89 loc) · 2.64 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
84
85
86
87
88
89
{
"name": "typescript-collections",
"version": "1.3.2",
"description": "A complete, fully tested data structure library written in TypeScript.",
"main": "./dist/lib/umd.js",
"browser": "./dist/lib/index.js",
"jsnext:main": "./dist/lib/index.js",
"typings": "./dist/lib/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"lint": "tslint -c ./tslint.json ./src/**/*.ts",
"tsc": "tsc",
"umd": "node browserify-umd.js",
"minify": "node minify-umd.js",
"build": "npm run clean && npm run lint && npm run tsc && npm run umd && npm run minify",
"test": "mocha ./dist/test/*Test.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- ./dist/test/*.js",
"publish_to_npm": "npm publish",
"all": "npm run build && npm run test && npm run cover"
},
"repository": {
"type": "git",
"url": "https://github.com/basarat/typescript-collections.git"
},
"keywords": [
"typescript",
"generics",
"data",
"structures",
"collections",
"linked",
"list",
"dictionary",
"default",
"dictionary",
"multi",
"dictionary",
"binary",
"search",
"tree",
"key",
"value",
"stack",
"queue",
"set",
"bag",
"binary",
"heap",
"priority",
"queue",
"array"
],
"author": "Basarat Ali Syed <[email protected]> (http://basarat.com)",
"contributors": [
"Tomasz Ciborski <episage> (http://ciborski.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/basarat/typescript-collections/issues"
},
"homepage": "https://github.com/basarat/typescript-collections",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.32",
"@types/node": "^8.0.28",
"@types/power-assert": "^1.4.29",
"@types/source-map-support": "^0.4.0",
"browserify": "^14.4.0",
"browserify-umdify": "^1.0.3",
"chai": "^4.1.2",
"glob": "^7.0.6",
"istanbul": "^0.4.5",
"jasmine": "^2.5.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"mkdirp": "^0.5.1",
"mocha": "^3.5.3",
"power-assert": "^1.4.4",
"rimraf": "^2.5.4",
"source-map-support": "^0.4.2",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"uglify-js": "^3.3.9",
"util": "^0.10.3"
}
}