-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.64 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": "doxie-node",
"version": "1.6.0",
"description": "A Node.js API wrapper for Doxie go Wi-fi, Doxie Q, and Doxie Go SE",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist",
"lib"
],
"repository": "ryanSN/doxie-node.git",
"bugs": "https://github.com/ryanSN/doxie-node/issues",
"author": "ryanSN <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf dist",
"build": "yarn run build:es && yarn run build:cjs",
"build:es": "cross-env NODE_ENV=es ./node_modules/.bin/rollup -c",
"build:cjs": "cross-env NODE_ENV=cjs ./node_modules/.bin/rollup -c",
"prepublish": "yarn clean && yarn build",
"serve": "docsify serve docs",
"prepare": "yarn build && husky install"
},
"keywords": [
"node",
"doxie",
"doxie q",
"doxie go se",
"doxie go",
"doxie go wi-fi",
"api",
"wrapper",
"js"
],
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
],
"*.{js,css,md}": "prettier --write"
},
"devDependencies": {
"coveralls": "^3.0.2",
"cross-env": "^7.0.2",
"docsify-cli": "^4.4.3",
"husky": "^7.0.0",
"jest": "^27.3.0",
"lint-staged": ">=10",
"nock": "^11.1.0",
"prettier": "^1.14.3",
"rollup": "^1.14.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-node-resolve": "^5.0.1"
},
"dependencies": {
"axios": "^0.27.2",
"retry": "^0.13.1"
},
"engineStrict": true,
"engines": {
"node": ">=12.x.x"
}
}