UNPKG

2.63 kBJSONView Raw
1{
2 "name": "typescript-collections",
3 "version": "1.2.4",
4 "description": "A complete, fully tested data structure library written in TypeScript.",
5 "main": "./dist/lib/umd.js",
6 "jsnext:main": "dist/lib/index.js",
7 "typings": "./dist/lib/index.d.ts",
8 "scripts": {
9 "clean": "rimraf ./dist",
10 "lint": "tslint -c ./tslint.json ./src/**/*.ts",
11 "tsc": "tsc",
12 "umd": "node browserify-umd.js",
13 "minify": "node minify-umd.js",
14 "build": "npm run clean && npm run lint && npm run tsc && npm run umd && npm run minify",
15 "test": "mocha ./dist/test/*Test.js",
16 "cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- ./dist/test/*.js",
17 "publish_to_npm": "npm publish",
18 "all": "npm run build && npm run test && npm run cover"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/basarat/typescript-collections.git"
23 },
24 "keywords": [
25 "typescript",
26 "generics",
27 "data",
28 "structures",
29 "collections",
30 "linked",
31 "list",
32 "dictionary",
33 "default",
34 "dictionary",
35 "multi",
36 "dictionary",
37 "binary",
38 "search",
39 "tree",
40 "stack",
41 "queue",
42 "set",
43 "bag",
44 "binary",
45 "heap",
46 "priority",
47 "queue",
48 "array"
49 ],
50 "author": "Basarat Ali Syed <bas@basarat.com> (http://basarat.com)",
51 "contributors": [
52 "Tomasz Ciborski <episage> (http://ciborski.com)"
53 ],
54 "license": "MIT",
55 "bugs": {
56 "url": "https://github.com/basarat/typescript-collections/issues"
57 },
58 "homepage": "https://github.com/basarat/typescript-collections",
59 "devDependencies": {
60 "@types/chai": "^4.0.4",
61 "@types/mocha": "^2.2.32",
62 "@types/node": "^8.0.28",
63 "@types/power-assert": "^1.4.29",
64 "@types/source-map-support": "^0.4.0",
65 "browserify": "^14.4.0",
66 "browserify-umdify": "^1.0.3",
67 "chai": "^4.1.2",
68 "glob": "^7.0.6",
69 "istanbul": "^0.4.5",
70 "jasmine": "^2.5.1",
71 "karma": "^1.3.0",
72 "karma-chrome-launcher": "^2.0.0",
73 "karma-firefox-launcher": "^1.0.0",
74 "karma-mocha": "^1.1.1",
75 "karma-mocha-reporter": "^2.1.0",
76 "mkdirp": "^0.5.1",
77 "mocha": "^3.5.3",
78 "power-assert": "^1.4.4",
79 "rimraf": "^2.5.4",
80 "source-map-support": "^0.4.2",
81 "tslint": "^5.7.0",
82 "typescript": "^2.5.2",
83 "uglify-js": "^3.1.1",
84 "util": "^0.10.3"
85 }
86}