-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.21 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
{
"name": "bionic-reader",
"version": "1.1.0",
"description": "A Chrome extension for translating pages to bionic reading, which can be very beneficial to neurodiverse readers.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"dependencies": {
"puppeteer": "^14.1.1"
},
"devDependencies": {
"jest": "^28.1.0",
"jest-puppeteer": "^6.1.0"
},
"scripts": {
"test": "jest tests --config '{\"preset\": \"jest-puppeteer\"}'",
"test:unit": "jest tests/unit",
"test:int": "jest tests/integration --config '{\"preset\": \"jest-puppeteer\"}'",
"build": "if [ -f \"artifacts/$npm_package_version.zip\" ]; then echo 'Artifact already exists under this version.'; else zip -r artifacts/$npm_package_version.zip . -x '*.git*' -x '*.DS_Store' -x 'node_modules*' -x 'tests*' -x 'artifacts*' -x 'package*json' -x 'docs*' -x 'jest-puppeteer.config.js'; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koffiebaard/bionic-reader-chrome.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/koffiebaard/bionic-reader-chrome/issues"
},
"homepage": "https://github.com/koffiebaard/bionic-reader-chrome#readme"
}