-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.38 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
80
{
"name": "remote-func",
"version": "0.6.1",
"description": "JavaScript as the query language for your API",
"main": "client/index.js",
"repository": "https://github.com/yosbelms/remote-func",
"keywords": [
"api",
"graphql",
"rest",
"node",
"microservice",
"http",
"server",
"client"
],
"scripts": {
"test": "jasmine",
"coverage": "npm run build && npx nyc -e .ts jasmine-ts",
"clean": "find . -type f \\( -name \"*.js\" -o -name \"*.js.map\" -o -name \"*.d.ts\" -o -name \"*.d.ts.map\" \\) | grep -v \"./node_modules\" | xargs rm",
"build": "tsc -p ./tsconfig.nodejs.json && tsc -p ./tsconfig.browser.json",
"build-umd": "browserify ./client/index.js -o ./umd.js -s RemoteFunc",
"watch": "npm run clean && npx sane 'npm run build' --glob='*.ts'",
"prepublishOnly": "npm run clean && npm run build && npm run build-umd && npm run test",
"install-updates": "npx updates -uU -e p-defer,p-settle,node-fetch,@types/node-fetch,terser,mimic-fn,globby && npm i"
},
"bin": "./bin/remote-func.js",
"author": "yosbelms",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.16.0",
"@types/babel__core": "^7.1.16",
"@types/deep-freeze": "^0.1.2",
"@types/koa-compose": "^3.2.5",
"endent": "^2.1.0",
"globby": "^11.1.0",
"jailed-function": "^0.5.11",
"koa-compose": "^4.1.0",
"make-dir": "^4.0.0",
"mimic-fn": "^3.1.0",
"p-defer": "^3.0.0",
"p-settle": "^4.1.1",
"sade": "^1.8.1",
"terser": "^4.8.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/express-serve-static-core": "^4.17.25",
"@types/glob": "^7.2.0",
"@types/globby": "^9.1.0",
"@types/jasmine": "^4.3.5",
"@types/make-dir": "^2.1.0",
"@types/node": "^20.4.0",
"@types/node-fetch": "^2.5.10",
"@types/rimraf": "^3.0.2",
"@types/sade": "^1.7.4",
"browserify": "^17.0.0",
"delay": "^5.0.0",
"express": "^4.17.1",
"jasmine": "^4.6.0",
"micro": "^9.3.4",
"node-fetch": "^2.6.12",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sane": "^5.0.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.2",
"updates": "^12.2.2"
},
"engines": {
"node": ">=10"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": false,
"source-map-support": true
}
}