-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.95 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
{
"name": "knockout-paging",
"version": "0.4.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": {
"ci": "npm run format:verify && npm run test && npm run build",
"build": "cpx 'knockout*.{js,ts}' dist/ && replace '{{ version }}' $npm_package_version dist/knockout-paging.js && uglifyjs dist/knockout-paging.js -o dist/knockout-paging.min.js",
"test": "mocha test/spec.js",
"coverage": "mocha --require blanket -R html-cov > coverage/coverage.html",
"coveralls": "mocha --require blanket -R mocha-lcov-reporter > coverage/coverage.lcov",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,md,css,scss}'",
"format:verify": "prettier --list-different '**/*.{js,jsx,ts,tsx,json,md,css,scss}'"
},
"repository": {
"type": "git",
"url": "[email protected]/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.2.3",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cpx": "^1.5.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "^1.15.2",
"replace": "^1.0.0",
"uglify-js": "^3.4.9",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0"
},
"dependencies": {
"knockout": "^3.2.0"
},
"config": {
"blanket": {
"pattern": [
"knockout-paging.js"
],
"data-cover-never": [
"node_modules"
]
}
}
}