-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2 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
{
"name": "api-module",
"version": "1.0.0",
"author": "Alan Chen",
"description": "A solution to use axios with configs separated to modules",
"main": "dist/api-module.umd.js",
"module": "dist/api-module.es.js",
"types": "dist//src/index.d.ts",
"scripts": {
"config": "ts-node cli/index.ts",
"build": "rollup -c",
"test": "mocha --require ts-node/register --watch-extensions ts,js 'test/**/*.test.{ts,js}'",
"prepublishOnly": "npm run build",
"example:client": "ts-node example/client.ts",
"example:server": "node example/server.js"
},
"license": "996.ICU",
"private": false,
"useFrame": false,
"devDependencies": {
"@alanchenchen/commandlineflag": "^0.0.6",
"@rollup/plugin-json": "^4.0.2",
"@types/express": "^4.17.2",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"axios": "^0.21.2",
"chalk": "^3.0.0",
"express": "^4.17.1",
"inquirer": "^7.0.4",
"js-yaml": "^3.13.1",
"mocha": "^7.0.1",
"rollup": "^1.31.1",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-vue": "^5.1.6",
"svelte": "^3.18.2",
"ts-node": "^8.6.2",
"tslib": "^1.10.0",
"typescript": "^3.8.2",
"vue-template-compiler": "^2.6.11"
},
"engines": {
"node": ">= 8.16.0"
},
"keywords": [
"axios",
"module"
],
"repository": {
"type": "git",
"url": "https://github.com/alanchenchen/ApiModule"
},
"homepage": "https://github.com/alanchenchen/ApiModule",
"bugs": {
"url": "https://github.com/alanchenchen/ApiModule/issues",
"email": "[email protected]"
}
}