-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "dicom-data-dictionary",
"version": "0.2.0",
"description": "DICOM Data Dictionary",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/chafey/dicom-data-dictionary.git"
},
"keywords": [
"DICOM",
"Medical",
"Imaging"
],
"author": "Chris Hafey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chafey/dicom-data-dictionary/issues"
},
"homepage": "https://github.com/chafey/dicom-data-dictionary",
"scripts": {
"lint": "jshint lib/*.js",
"compile": "6to5 --modules common lib --out-dir dist",
"test": "mocha --compilers js:6to5/register",
"build": "npm run clean && npm run lint && npm run compile && npm run test",
"watch": "onchange 'lib/**.js' 'test/**.js' -- npm run build",
"example": "npm run compile && node example/example",
"example-es6": "npm run compile && 6to5-node example/example-es6",
"publish": "git push && npm publish",
"clean": "rm -f dist/*"
},
"devDependencies": {
"6to5": "^3.0.0",
"jshint": "*",
"mocha": "*",
"onchange": "0.0.2"
},
"jshintConfig": {
"esnext": true
},
"jspm": {
"main":"lib/index.js",
"format":"es6"
}
}