-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
executable file
·60 lines (60 loc) · 1.79 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
{
"name": "dimse",
"version": "0.0.2",
"description": "DICOM Services: DIMSE C-Service functions",
"keywords": [
"DICOM",
"DIMSE"
],
"author": "Open Health Imaging Foundation",
"homepage": "https://github.com/OHIF/dicom-dimse",
"license": "MIT",
"main": "./dist/DIMSE.js",
"module": "./dist/DIMSE.js",
"repository": {
"type": "git",
"url": "https://github.com/OHIF/dicom-dimse.git"
},
"scripts": {
"build": "npm run test && npm run version && npm run webpack",
"docs": "npm run docs:api && cd docs && gitbook install && gitbook serve",
"docs:api": "npm run clean:apidocs && documentation build src/index.js -f md -o docs/api.md",
"eslint": "eslint -c .eslintrc.js src",
"eslint-quiet": "eslint -c .eslintrc.js --quiet src",
"eslint-fix": "eslint -c .eslintrc.js --fix src",
"test": "jest \\.test\\.js$",
"test:ci": "npm run test -- --coverage --coverageReporters=text-lcov | coveralls",
"watch": "npm run webpack:watch",
"start": "npm run webpack",
"webpack": "webpack --progress --config ./webpack.config.js",
"webpack:watch": "webpack --progress --debug --watch --config ./webpack.config.js",
"version": "node -p -e \"'export default \\'' + require('./package.json').version + '\\';'\" > src/version.js"
},
"devDependencies": {
"coveralls": "^3.0.2",
"documentation": "^7.1.0",
"fibers": "^3.0.0",
"jest": "^23.4.0",
"jest-junit": "^5.1.0",
"lodash": "^4.17.10",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"reporters": [
"default",
"jest-junit"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
]
}
}