-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.29 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.29 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
{
"name": "priority-queue-ts",
"version": "0.4.0",
"description": "JavaScript based priority queue",
"scripts": {
"test": "nyc mocha"
},
"author": "Marc Roche",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/lodash": "^4.14.80",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.47",
"@types/systemjs": "^0.20.6",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-coveralls": "^0.1.4",
"gulp-flatten": "^0.3.1",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "^4.3.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.3",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.3.0",
"should": "^13.1.3",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"vinyl-buffer": "^1.0.0"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"gulpfile.js",
"**/*.d.ts"
],
"reporter": [
"lcov"
],
"all": true
},
"files": [
"dist"
]
}