-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "abuseipdb",
"version": "1.0.1",
"repository": "https://github.com/dzek69/abuseipdb.git",
"author": "Jacek Nowacki",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=testing mocha --require ./test/bootstrap.cjs 'src/**/*.spec.mjs'",
"docs": "node build-scripts/docs.mjs && jsdoc -r src README.md -t node_modules/docdash -d ./docs -u ./tutorials -c jsdoc.json && node build-scripts/docs.after.mjs",
"transpile": "node build-scripts/transpile.mjs && babel src -d dist --ignore **/*.spec.mjs && node build-scripts/transpile.after.mjs",
"prepublishOnly": "yarn lint && yarn test && yarn docs",
"prepack": "yarn transpile",
"lint": "cross-env eslint --report-unused-disable-directives 'src/**/*.mjs' 'src/*.mjs'",
"lint:fix": "yarn lint --fix"
},
"main": "dist/index.js",
"module": "src/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"default": "./src/index.mjs"
}
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"@dzek69/eslint-config-base": "^1.0.1",
"babel-plugin-module-extension": "^0.1.1",
"babel-plugin-rewire": "^1.2.0",
"cross-env": "^7.0.2",
"docdash": "^1.2.0",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0",
"husky": "^4.2.3",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"must": "^0.13.4"
},
"dependencies": {
"api-reach": "^0.7.0",
"bottom-line-utils": "^0.8.0",
"node-fetch": "^3.0.0-beta.4"
},
"husky": {
"hooks": {
"pre-push": "yarn prepublishOnly && yarn transpile"
}
},
"libraryTemplate": {
"version": "2.0.8",
"fixDefaultForCommonJS": true
}
}