-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.86 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
51
52
53
54
55
56
57
58
{
"name": "web-rest-client",
"version": "1.0.7",
"description": "Restful HTTP Client for broswer.",
"main": "dist/index.js",
"typings": "types/main.d.ts",
"scripts": {
"build": "NODE_ENV=prod rollup -c rollup.config.js",
"dev": "NODE_ENV=prod rollup -c rollup.dev.config.js",
"test": "NODE_ENV=test jest --config=jest.config.js --coverage --no-cache",
"coveralls": "cat coverage/lcov.info | coveralls",
"eslint": "eslint ./src --ext .ts --fix",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helianthuswhite/RestClient.git"
},
"author": "helianthuswhite",
"license": "MIT",
"bugs": {
"url": "https://github.com/helianthuswhite/RestClient/issues"
},
"homepage": "https://github.com/helianthuswhite/RestClient#readme",
"dependencies": {
"regenerator-runtime": "^0.13.2"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.7.7",
"@babel/runtime": "^7.8.4",
"@types/jest": "^25.1.1",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.20.0",
"faux-jax": "^5.0.6",
"jest": "^29.2.0",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-dts": "^1.2.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^29.0.3",
"tslib": "^1.10.0",
"typescript": "^3.7.4"
}
}