1 | {
|
2 | "name": "bind-decorator",
|
3 | "version": "1.0.11",
|
4 | "description": "The fastest automatic method.bind(this) decorator",
|
5 | "main": "index.js",
|
6 | "typings": "index.d.ts",
|
7 | "scripts": {
|
8 | "test": "tsc -p __tests__ && jest --verbose",
|
9 | "jest-cov": "tsc --sourceMap -p __tests__ && jest --verbose --coverage --collectCoverageFrom src/index.js",
|
10 | "map-cov": "remap-istanbul -i ./coverage/coverage-final.json -t lcovonly -o ./lcov.info",
|
11 | "report-cov": "codeclimate-test-reporter < ./lcov.info",
|
12 | "coverage": "npm run jest-cov && npm run map-cov && npm run report-cov",
|
13 | "npm": "npm run clean && tsc -d -p . && mv ./src/index.js . && mv ./src/index.d.ts .",
|
14 | "clean": "rm -f ./src/index.js* ./__tests__/*.d.ts ./__tests__/*.js ./lcov.info && rm -f -R ./coverage"
|
15 | },
|
16 | "repository": {
|
17 | "type": "git",
|
18 | "url": "git+https://github.com/NoHomey/bind-decorator.git"
|
19 | },
|
20 | "keywords": [
|
21 | "bind",
|
22 | "autobind",
|
23 | "methodbind",
|
24 | "bind-decorator",
|
25 | "autobind-decorator",
|
26 | "decorator"
|
27 | ],
|
28 | "author": "Ivo Stratev",
|
29 | "license": "MIT",
|
30 | "bugs": {
|
31 | "url": "https://github.com/NoHomey/bind-decorator/issues"
|
32 | },
|
33 | "homepage": "https://github.com/NoHomey/bind-decorator#readme",
|
34 | "devDependencies": {
|
35 | "codeclimate-test-reporter": "^0.5.0",
|
36 | "jest": "^20.0.4",
|
37 | "remap-istanbul": "^0.9.5",
|
38 | "typescript": "^2.4.2",
|
39 | "@types/jest": "^20.0.4"
|
40 | }
|
41 | }
|