-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.9 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
{
"name": "wiki-builder",
"version": "1.0.5",
"description": "Build github wikis from markdown files",
"private": false,
"main": "lib/build.js",
"scripts": {
"start": "node src/wikiBuild.js",
"build": "rm ./lib/build.js; babel src/index.js --out-file lib/build.js",
"test": "npm run test-setup && npm run test-wiki-build && npm run test-plugin && npm run test-check-files",
"test-setup": "[ -f ./src/index.js ] && [ -f ./src/wikiBuild.js ] && npm run build && [ -f ./lib/build.js ]",
"test-wiki-build": "npm run setup-test-wiki-build && cd ./test/wiki_builder_test && npm run start",
"setup-test-wiki-build": "rm -rf ./test/wiki_builder_test && cp -R ./node_modules/wiki_builder_test/ ./test/wiki_builder_test",
"test-plugin": "npm run setup-test-plugin-1 && npm run setup-test-plugin-2 && npm run setup-test-plugin-3 && npm run setup-test-plugin-4 && cd ./test/wiki_builder_test_plugin && npm run start",
"setup-test-plugin-1": "rm -rf ./test/wiki_builder_test_plugin && cp -R ./node_modules/wiki_builder_test_plugin/ ./test/wiki_builder_test_plugin",
"setup-test-plugin-2": "rm -rf ./test/wiki_builder_test_plugin/node_modules && rm -rf ./test/wiki_builder_test_plugin/node_modules/wiki-builder-plugin-test",
"setup-test-plugin-3": "mkdir ./test/wiki_builder_test_plugin/node_modules && mkdir ./test/wiki_builder_test_plugin/node_modules/wiki-builder-plugin-test",
"setup-test-plugin-4": "cp -R ./node_modules/wiki-builder-plugin-test/ ./test/wiki_builder_test_plugin/node_modules/wiki-builder-plugin-test",
"test-check-files": "npx ava --tap"
},
"bin": {
"wiki-builder": "src/wikiBuild.js"
},
"ava": {
"files": [
"test.mjs"
]
},
"files": [
"lib/build.js",
"src/wikiBuild.js"
],
"repository": {
"type": "git",
"url": "https://github.com/petekeller2/wiki-builder.git"
},
"keywords": [
"github",
"markdown",
"npm",
"wiki"
],
"author": "Peter Keller",
"license": "MIT",
"bugs": {
"url": "https://github.com/petekeller2/wiki-builder/issues"
},
"homepage": "https://github.com/petekeller2/wiki-builder#readme",
"dependencies": {
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"shelljs": "^0.8.5",
"tracer": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/preset-flow": "^7.23.3",
"@babel/runtime": "^7.23.4",
"ava": "^5.3.1",
"babel-eslint": "^10.1.0",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"underscore": "^1.13.6",
"wiki_builder_test": "latest",
"wiki_builder_test_plugin": "latest",
"wiki-builder-plugin-test": "latest"
}
}