-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "magik-api",
"version": "0.3.0",
"repository": "https://github.com/inmagik/magik-api",
"description": "Fluent API client based on rxjs",
"author": "Giovanni Fumagalli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inmagik/magik-api/issues"
},
"keywords": [
"api",
"rxjs",
"rest"
],
"main": "./lib/index.cjs.js",
"module": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"dev": "webpack-dev-server",
"test": "jest",
"build": "rimraf lib && rollup -c && tsc --project tsconfig.declarations.json",
"defs": "tsc --project tsconfig.declarations.json"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"jest": "^26.4.2",
"rimraf": "^3.0.2",
"rollup": "^2.26.10",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"query-string": "^6.13.1",
"rxjs": "^6.6.3",
"tslib": "^2.0.1",
"xhr2": "^0.2.0"
}
}