-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "ts-cacheable",
"version": "1.0.10",
"description": "Promise/Observable cache decorators",
"main": "./dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"es2015": "./dist/esm2015/index.js",
"types": "./dist/cjs/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "karma start",
"test:watch": "karma start --auto-watch",
"build:cjs": "rm -rf dist && tsc",
"build:esm5": "tsc --p tsconfig.esm5.json",
"build:esm2015": "tsc --p tsconfig.esm2015.json",
"build:all": "npm run build:cjs && npm run build:esm5 && npm run build:esm2015"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angelnikolov/ts-cacheable.git"
},
"author": "Angel Nikolov <[email protected]>",
"license": "ISC",
"peerDependencies": {
"rxjs": "^6.6.0 || ^7.4.0"
},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/node": "^8.10.0",
"jasmine": "^3.1.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^2.2.0",
"karma-commonjs": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-seed-reporter": "^0.2.0",
"karma-typescript": "^5.5.2",
"typescript": "^4.3.2"
},
"bugs": {
"url": "https://github.com/angelnikolov/ts-cacheable/issues"
},
"homepage": "https://github.com/angelnikolov/ts-cacheable#readme"
}