forked from ErikSchierboom/knockout-paging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.58 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
{
"name": "knockout-paging",
"version": "0.3.0",
"description": "Adds an extender to Knockout to add paging functionality to observable arrays.",
"main": "dist/knockout-paging.js",
"typings": "./dist/knockout-paging.d.ts",
"files": [
"LICENSE",
"README.md",
"knockout-paging.js",
"knockout-paging.d.ts",
"knockout.d.ts",
"dist"
],
"scripts": {
"test": "gulp test",
"coverage": "mocha --require blanket -R html-cov > coverage/coverage.html",
"coveralls": "mocha --require blanket -R mocha-lcov-reporter > coverage/coverage.lcov"
},
"repository": {
"type": "git",
"url": "git@github.com/ErikSchierboom/knockout-paging.git"
},
"keywords": [
"knockout",
"foreach",
"paging",
"initialize",
"javascript"
],
"author": "Erik Schierboom",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ErikSchierboom/knockout-paging/issues"
},
"homepage": "https://github.com/ErikSchierboom/knockout-paging",
"registry": "npm",
"format": "global",
"devDependencies": {
"blanket": "^1.1.7",
"chai": "^3.4.0",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-bump": "^1.0.0",
"gulp-load-plugins": "^1.0.0",
"gulp-mocha": "^2.1.3",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.4.2",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0"
},
"dependencies": {
"knockout": "^3.2.0"
},
"config": {
"blanket": {
"pattern": [
"knockout-paging.js"
],
"data-cover-never": [
"node_modules"
]
}
}
}