UNPKG

1.71 kBJSONView Raw
1{
2 "name": "typescript-memoize",
3 "version": "1.1.1",
4 "description": "Memoize decorator for Typescript",
5 "main": "./dist/memoize-decorator.js",
6 "module": "./dist/es2015/memoize-decorator.js",
7 "typings": "./dist/memoize-decorator.d.ts",
8 "scripts": {
9 "test": "karma start test/karma.config.js --single-run",
10 "prepublish": "npm run build && npm run build:es2015",
11 "clean": "rm -rf ./dist",
12 "build": "tsc",
13 "build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
14 "tslint": "tslint --project .",
15 "eslint": "npm run tslint"
16 },
17 "files": [
18 "dist",
19 "src"
20 ],
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/darrylhodgins/typescript-memoize.git"
24 },
25 "keywords": [
26 "typescript",
27 "memoize",
28 "functional",
29 "decorator"
30 ],
31 "author": "Darryl Hodgins <darrylh@darryh.ca>",
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/darrylhodgins/typescript-memoize/issues"
35 },
36 "homepage": "https://github.com/darrylhodgins/typescript-memoize#readme",
37 "devDependencies": {
38 "@types/jasmine": "3.6.2",
39 "@types/node": "14.14.9",
40 "awesome-typescript-loader": "5.2.1",
41 "es6-shim": "0.35.6",
42 "jasmine-core": "3.6.0",
43 "karma": "6.3.16",
44 "karma-chrome-launcher": "3.1.0",
45 "karma-es6-shim": "1.0.0",
46 "karma-jasmine": "4.0.1",
47 "karma-jasmine-html-reporter": "1.5.4",
48 "karma-junit-reporter": "2.0.1",
49 "karma-sourcemap-loader": "0.3.8",
50 "karma-spec-reporter": "0.0.32",
51 "karma-threshold-reporter": "0.1.15",
52 "karma-typescript": "5.2.0",
53 "source-map-loader": "1.1.2",
54 "tslib": "2.0.3",
55 "tslint": "6.1.3",
56 "typescript": "4.1.2"
57 }
58}