-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "object-treeify",
"type": "module",
"version": "0.0.0-development",
"description": "Stringify Object as tree structure",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "cp -rf ./src ./lib && ncc build -m -o lib && mv lib/index.js lib/index.min.js && cp src/index.js lib/index.js && rm lib/package.json",
"build-clean": "yarn run clean && yarn run build",
"test-simple": "c8 mocha --experimental-loader=./test/hot.js \"./test/**/*.spec.js\"",
"test": "yarn run clean && yarn run gardener && yarn run test-simple",
"coveralls": "node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info",
"semantic-release": "yarn run build-clean && npx semantic-release",
"gardener": "node gardener.js",
"docker": "docker run --net host -u`id -u`:`id -g` -v $(pwd):/user/project -v ~/.aws:/user/.aws -v ~/.npmrc:/user/.npmrc -w /user/project -it --entrypoint /bin/bash",
"t": "yarn test",
"ts": "yarn run test-simple",
"tsv": "yarn run test-simple --verbose",
"u": "yarn upgrade --latest --force",
"i": "yarn install --frozen-lockfile",
"it": "yarn run i && yarn run t",
"ncc-analyze": "yarn clean && cp -rf ./src ./lib && ncc build -m -s -o lib && npx source-map-explorer lib/index.js --only-mapped --html source.html && yarn clean"
},
"repository": {
"type": "git",
"url": "https://github.com/blackflux/object-treeify.git"
},
"keywords": [
"object",
"tree",
"print",
"console",
"pretty",
"treeify",
"stringify",
"visualize",
"convert",
"string",
"debug"
],
"author": "Lukas Siemon",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackflux/object-treeify/issues"
},
"homepage": "https://github.com/blackflux/object-treeify#readme",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.18.2",
"@babel/register": "7.18.6",
"@blackflux/eslint-plugin-rules": "2.1.0",
"@blackflux/robo-config-plugin": "7.9.4",
"@vercel/ncc": "0.34.0",
"c8": "7.11.3",
"chai": "4.3.6",
"coveralls": "3.1.1",
"eslint": "8.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-mocha": "10.0.5",
"js-gardener": "3.0.5",
"smart-fs": "3.0.1",
"treeify": "1.1.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/blackflux/object-treeify/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 12"
},
"files": [
"lib"
],
"dependencies": {}
}