This repository has been archived by the owner on Feb 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
124 lines (124 loc) · 3.39 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@natlibfi/oai-pmh-server",
"description": "Modular OAI-PMH server",
"author": {
"name": "The National Library of Finland"
},
"keywords": ["oai-pmh","harvest","marc","library","bibliography","bibliographic","archive"],
"homepage": "https://github.com/natlibfi/oai-pmh-server",
"bugs": {
"url": "https://github.com/natlibfi/oai-pmh-server/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:natlibfi/oai-pmh-server.git"
},
"license": "AGPL-3.0+",
"version": "1.0.0",
"main": "./distribution/index.js",
"scripts": {
"prepublish": "npm run build",
"lint": "xo --fix",
"test": "cross-env NODE_ENV=test nyc mocha --compilers js:babel-register",
"test:watch": "npm run test && chokidar source test -c 'npm run test'",
"coverage": "nyc check-coverage",
"clean": "rimraf build coverage .nyc_output distribution doc",
"build:doc": "esdoc",
"build:transpile": "babel source --source-maps --out-dir=distribution --minified",
"build": "ncu && npm run build:transpile && npm run build:doc",
"dev:": "npm run clean && npm run lint && npm run build",
"dev:check": "npm run clean && npm run lint && npm test;npm run coverage;npm run build",
"dev:watch": "chokidar source -c 'npm run dev'",
"dev:check:watch": "chokidar source test -c 'npm run dev:check'",
"check-and-build": "npm run lint && npm test && npm run coverage && npm run build",
"travisci": "npm run check-and-build",
"publish-to-npm": "npm install && npm run lint && npm test && npm run coverage && npm publish"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"cross-env": "^5.0.5",
"express": "^4.15.4",
"little-quacker": "^1.0.0",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"npm-check-updates": "^2.12.1",
"nyc": "^10.3.2",
"@natlibfi/oai-pmh-server-backend-module-prototype": "^1.0.0",
"xml": "^1.0.1",
"xmldom": "^0.1.27",
"xo": "^0.18.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"chai-xml": "^0.3.1",
"chokidar-cli": "^1.2.0",
"codeclimate-test-reporter": "^0.5.0",
"cross-env": "^5.0.5",
"esdoc": "^1.0.2",
"git-scripts": "^0.2.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"npm-check-updates": "^2.12.1",
"nyc": "^11.2.1",
"rimraf": "^2.6.1",
"simple-mock": "^0.8.0",
"validate-commit": "^3.2.1",
"xo": "^0.18.2"
},
"xo": {
"rules": {
"valid-jsdoc": [
"error"
],
"prefer-arrow-callback": [
"error"
]
}
},
"esdoc": {
"source": "source",
"destination": "./doc"
},
"babel": {
"presets": [
"latest"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"reporter": [
"lcov",
"html"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"git": {
"scripts": {
"commit-msg": "./node_modules/.bin/validate-commit-msg -p atom $1"
}
}
}