-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.16 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
{
"name": "json_client_ts",
"version": "0.1.22",
"description": "Basic functions for JsonRPC 2.0, and JsonRESTful handling, written in Typescript",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "esnext/index.js",
"types": "types/index.d.ts",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run postinstall:es && npm run postinstall:esnext && npm run postinstall:umd && npm run postinstall:types",
"postinstall:es": "tsc --module commonjs --outDir es --skipLibCheck",
"postinstall:esnext": "tsc --module esnext --outDir esnext --skipLibCheck",
"postinstall:umd": "tsc --module umd --outDir lib --skipLibCheck",
"postinstall:types": "tsc --declaration --emitDeclarationOnly --outDir types --skipLibCheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/druppy/json_client_ts.git"
},
"keywords": [],
"author": "Bo Lorentsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/druppy/json_client_ts/issues"
},
"homepage": "https://github.com/druppy/json_client_ts#readme",
"devDependencies": {
"typescript": "^4"
}
}