-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "@yoannchb/wtf-json",
"version": "1.0.6",
"description": "Parse any kind of broken json for scrapping easily",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
],
"scripts": {
"test": "jest --colors",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoannchb-pro/wtf-json.git"
},
"keywords": [
"scrapping",
"js-object-parser",
"json-parser",
"tokenizer",
"parser",
"ast",
"typescript",
"javascript",
"nodejs"
],
"author": "yoannchb",
"license": "MIT",
"bugs": {
"url": "https://github.com/yoannchb-pro/wtf-json/issues"
},
"homepage": "https://github.com/yoannchb-pro/wtf-json#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.10",
"jest": "^29.7.0",
"rollup": "^4.17.2",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}