-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "json-toy",
"version": "2.0.2",
"description": "json-treeify: Get tree string(├└│─) via json, support browser|node, browser none dependencies!",
"dependencies": {
"clipboardy": "^1.2.3",
"yargs": "^12.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^4.11.0",
"eslint-config-kaola": "^0.1.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"rewire": "^2.5.2",
"should": "^11.1.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-common-shake": "^2.0.1"
},
"main": "index.js",
"bin": {
"j-tree-str": "bin/j-tree-str.js",
"jts": "bin/j-tree-str.js",
"jtls": "bin/jtls.js"
},
"scripts": {
"test": "npm run test:cover",
"test:cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --harmony",
"test:nocover": "mocha --harmony",
"test:one": "mocha --harmony ./test/4.json-treeify-2.test.js",
"pack": "webpack --progress --colors --display-error-details --config ./build/webpack.config.js",
"lint": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Froguard/json-toy.git"
},
"engines": {
"node": ">= 6.0",
"npm": ">= 3"
},
"keywords": [
"treeify",
"tree string",
"directory tree",
"json tree",
"object tree",
"circular check",
"travel safe",
"keyPath"
],
"author": "froguard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Froguard/json-toy/issues"
},
"homepage": "https://froguard.github.io/funny/treeString"
}