forked from angelnikolov/ts-cacheable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "ngx-cacheable",
"version": "1.4.2",
"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/ngx-cacheable.git"
},
"author": "Angel Nikolov <darkysharky@gmail.com>",
"license": "ISC",
"peerDependencies": {
"rxjs": "^6.3.0"
},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/node": "^8.10.0",
"jasmine": "^3.1.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-commonjs": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-typescript": "^4.1.0",
"typescript": "^2.8.1"
}
}