-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.55 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
{
"name": "load-object",
"version": "1.8.5",
"description": "Takes a path to a file locally or remotely and loads that file into a Javascript Object.",
"main": "index.js",
"scripts": {
"test": "node_modules/tap/bin/run.js --reporter=specy spec/test.js",
"lint": "node_modules/eslint/bin/eslint.js bin/* spec/* src/* index.js --fix",
"cloc": "cloc --vcs git",
"precommit": "npm run lint; npm run test; npm run cloc; rm ./package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mithrayls/js-load-object.git"
},
"keywords": [
"json",
"markdown",
"yaml",
"toml",
"cbor",
"dhall",
"undici",
"load",
"parse",
"parser",
"html",
"xml",
"fetch",
"object",
"utility"
],
"author": "Raymond Smith",
"license": "MIT",
"type": "module",
"dependencies": {
"@iarna/toml": "^3.0.0",
"@ipld/dag-cbor": "^7.0.3",
"axios": "^1.1.3",
"fast-xml-parser": "^4.0.11",
"js-yaml": "^4.1.0",
"json-cycle": "^1.3.0",
"marked": "^4.1.1",
"parse-path": "^7.0.0",
"parse5": "^7.1.1",
"ramda": "^0.28.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"ansi-colors": "^4.1.3",
"cloc": "^2.10.0",
"codecov": "^3.8.3",
"eslint": "^8.24.0",
"eslint-config-hardcore": "^25.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"nyc": "^15.1.0",
"tap": "^16.3.0"
}
}