-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "api-link",
"version": "1.0.6",
"description": "Back-end API made easily accessible via auto-generated methods",
"main": "dist/node.js",
"browser": "./dist/index.js",
"scripts": {
"prepublishOnly": "npm run lint && npm run build && npm run test && npm run docs",
"test": "./node_modules/.bin/jest --forceExit --detectOpenHandles",
"testSync": "./node_modules/.bin/jest --runInBand --forceExit --detectOpenHandles",
"lint": "./node_modules/.bin/tslint -c ./tslint.json -p ./tsconfig.json -t stylish ./lib/**/*.ts",
"build": "./node_modules/.bin/webpack && npm run buildBrowser",
"buildBrowser": "./node_modules/.bin/webpack --config webpack.config.browser.js",
"buildDev": "./node_modules/.bin/webpack --config webpack.config.dev.js && npm run buildDevBrowser",
"buildDevBrowser": "./node_modules/.bin/webpack --config webpack.config.dev.browser.js",
"docs": "./node_modules/.bin/typedoc --module commonjs --target ES6 --exclude **/*.test.* --ignoreCompilerErrors --out ./docs --readme ./README.md --mode file ./index.ts ./lib"
},
"homepage": "https://github.com/vytenisu/api-link",
"bugs": {
"url": "https://github.com/vytenisu/api-link/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vytenisu/api-link.git"
},
"keywords": [
"rest",
"restful",
"fetch",
"api",
"back-end",
"server",
"proxy",
"object",
"class",
"easy",
"simple",
"ts",
"TypeScript",
"auto",
"generator",
"vytenis",
"urbonavicius",
"vytenisu",
"WhiteTurbine",
"Whitend"
],
"author": {
"name": "Vytenis Urbonavičius",
"url": "https://github.com/vytenisu"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/fetch-mock": "^7.3.2",
"@types/jest": "^25.1.4",
"@types/node-fetch": "^2.5.7",
"express": "^4.17.1",
"fetch-mock": "^9.10.1",
"fetch-mock-jest": "^1.3.0",
"find-node-modules": "^2.0.0",
"jest": "^25.2.3",
"license-webpack-plugin": "^2.1.4",
"npm-dts-webpack-plugin": "^1.2.1",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typedoc": "^0.17.3",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"param-case": "^3.0.3",
"node-fetch": "^2.6.0"
}
}