-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·35 lines (35 loc) · 1.07 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
{
"name": "@ezs/libpostal",
"description": "Libpostal statements for EZS",
"version": "0.3.1",
"author": "Nicolas Thouvenin <[email protected]>",
"bugs": "https://github.com/Inist-CNRS/ezs/issues",
"dependencies": {
"lodash": "4.17.21",
"node-postal": "1.2.0"
},
"homepage": "https://github.com/Inist-CNRS/ezs/tree/master/packages/libpostal#readme",
"keywords": [
"ezs"
],
"license": "MIT",
"main": "./lib/index.js",
"peerDependencies": {
"@ezs/core": "*"
},
"devDependencies": {
"@types/node-postal": "1.1.3"
},
"publishConfig": {
"access": "public"
},
"repository": "Inist-CNRS/ezs.git",
"scripts": {
"build": "babel --root-mode upward src --out-dir lib",
"doc": "documentation readme src/* --sort-order=alpha --shallow --markdown-toc-max-depth=2 --readme-file=../../docs/plugin-libpostal.md --section=usage && cp ../../docs/plugin-libpostal.md ./README.md",
"lint": "eslint --ext=.js ./test/*.js ./src/*.js",
"prepublish": "npm run build",
"pretest": "npm run build",
"preversion": "npm run doc"
}
}