-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.8 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
{
"name": "where-away",
"version": "0.4.3",
"description": "Generate a keyboard-navigable personal bookmark webpage from your bookmarks manifest. ",
"bin": "build/cli.js",
"main": "build/cli.js",
"files": [
"build"
],
"scripts": {
"build": "rm -rf build && node build.js",
"test": "run-s test:unit test:acceptance:local",
"test:unit": "JEST_JUNIT_OUTPUT_NAME=junit.unit.xml jest --testPathPattern=test/unit",
"test:acceptance:local": "npm run build && JEST_JUNIT_OUTPUT_NAME=junit.acceptance.local.xml && npm run _test:acceptance",
"test:acceptance:production": "JEST_JUNIT_OUTPUT_NAME=junit.acceptance.production.xml SANDBOX_ENVIRONMENT=PRODUCTION npm run _test:acceptance",
"_test:acceptance": "RESULT_FILE=result.html TEST_SANDBOX=${TEST_SANDBOX:-$(RESULT_FILE=result.html test/acceptance/help/create_sandbox.sh)} jest --testPathPattern=test/acceptance",
"sandbox": "npm run build && open $(RESULT_FILE=result.html test/acceptance/help/create_sandbox.sh)/result.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderbird/where-away.git"
},
"keywords": [
"bookmark",
"html",
"generator"
],
"author": "Alexander Bird",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/alexanderbird/where-away/issues"
},
"homepage": "https://github.com/alexanderbird/where-away#readme",
"devDependencies": {
"fs-extra": "^9.0.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jsdom": "^16.4.0",
"npm-run-all": "^4.1.5",
"pug": "^3.0.0",
"puppeteer": "^5.4.1"
},
"jest": {
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "artifacts"
}
]
]
},
"dependencies": {
"xmldom": "^0.4.0",
"yargs-parser": "^20.2.4"
}
}