-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "jsonx",
"version": "0.0.1",
"description": "Javascript Object Notation and More (JSONX)",
"files": [
"src",
"@types/index.d.ts"
],
"types": "./@types/index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"start": "node dist/src/index.js",
"test": "ts-node ./test/index.ts",
"build": "tsc && yarn build:cp-source",
"build:cp-source": "cp ./src/** ./dist",
"type": "tsc --noEmit"
},
"keywords": [
"json",
"jsonx",
"jsontool",
"promise"
],
"main": "src/index.js",
"homepage": "https://github.com/fabrice8/jsonx",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/jsonx"
},
"repository": "https://github.com/fabrice8/jsonx",
"author": "Fabrice Marlboro",
"license": "BSC",
"private": false,
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.10.1",
"@types/request": "^2.48.7",
"@types/request-promise-native": "^1.0.18",
"ts-node": "^10.2.1",
"tsc": "^2.0.3",
"typescript": "^4.4.3"
},
"dependencies": {
"node-fetch": "^2.6.5",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"tsd": {
"cwd": "@types",
"compilerOptions": {
"esModuleInterop": true
}
}
}