-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.49 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.49 KB
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
{
"name": "marc-record-validate-cli",
"version": "1.0.0",
"description": "A command-line client for validating and fixing records in Melinda",
"main": "./src/cli.js",
"scripts": {
"build": "./node_modules/.bin/babel src/ -d build/",
"build:watch": "./node_modules/.bin/babel --watch src/ -d build/",
"lint": "./node_modules/.bin/eslint src/*.js",
"lint:all": "npm run lint index.js && npm run lint ./lib/*.js",
"test": "BABEL_ENV=test mocha --compilers js:babel-core/register ./src/*.spec.js",
"test:watch": "npm run test -- -w",
"cover": "node_modules/nyc/bin/nyc.js npm test && node_modules/nyc/bin/nyc.js report --reporter=text-lcov | coveralls",
"reinstall": "rm -r node_modules && npm install",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NatLibFi/marc-record-validate-cli.git"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0+",
"bugs": {
"url": "https://github.com/NatLibFi/marc-record-validate-cli/issues"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"homepage": "https://github.com/NatLibFi/marc-record-validate-cli#readme",
"dependencies": {
"@natlibfi/marc-record-validators-melinda": "git+https://github.com/NatLibFi/marc-record-validators-melinda.git#development",
"@natlibfi/melinda-api-client": "git+https://github.com/NatLibFi/melinda-api-client.git",
"babel-polyfill": "^6.26.0",
"exit-hook": "^1.1.1",
"lodash": "^4.17.4",
"marc-record-js": "git+https://github.com/petuomin/marc-record-js.git",
"marc-record-serializers": "git+https://github.com/petuomin/marc-record-serializers.git",
"marc-record-validate": "^1.0.2",
"mongodb": "^3.0.1",
"prompt-promise": "^1.0.3",
"winston": "^2.4.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"build-cli": "^0.3.5",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-xml": "^0.3.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"eslint": "^4.5.0",
"eslint-plugin-async-await": "0.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nock": "^9.1.4",
"nyc": "^11.3.0"
}
}