-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "sdmxmllib",
"description": "Javascript library for converting SDMX-ML structure messages",
"version": "0.0.0-semantically-released",
"main": "./lib/sdmxmllib.js",
"scripts": {
"clean": "rm -rf lib/",
"prebuild": "npm run clean",
"build": "webpack --display-chunks --display-reasons --progress --color -p",
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 85 --branches 65 --functions 85 --lines 90",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "mocha --require ./src/util/node-helper.js --recursive",
"test:single": "istanbul cover _mocha -- --require ./src/util/node-helper.js --recursive",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"lint": "jshint src test"
},
"repository": {
"type": "git",
"url": "https://github.com/airosa/sdmxmllib.git"
},
"keywords": [
"sdmx",
"sdmx-ml"
],
"author": "Sami Airo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airosa/sdmxmllib/issues"
},
"homepage": "https://github.com/airosa/sdmxmllib#readme",
"devDependencies": {
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.5.0",
"cz-conventional-changelog": "1.1.5",
"ghooks": "1.0.3",
"istanbul": "0.4.2",
"jsdom": "8.4.0",
"jshint": "2.9.1",
"mocha": "2.4.5",
"raw-loader": "0.5.1",
"semantic-release": "^4.3.5",
"webpack": "1.12.14",
"webpack-merge": "0.12.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test:single && npm run check-coverage && npm run lint"
}
},
"dependencies": {
"xmldom": "0.1.22"
}
}