-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "freesurfer-parser",
"version": "0.0.2",
"description": "Parse and validate freesurfer volume text files",
"main": "src/index.js",
"dependencies": {
"joi": "9.0.4",
"lodash": "4.15.0"
},
"devDependencies": {
"eslint": "3.4.0",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.14.0",
"eslint-plugin-jsx-a11y": "2.2.1",
"eslint-plugin-react": "6.2.0",
"mkdirp": "0.5.1",
"nyc": "8.1.0",
"tape": "4.6.0"
},
"scripts": {
"test": "nyc --reporter=lcov --check-coverage --functions=90 --branches=90 node test/",
"lint": "eslint src test",
"validate": "npm ls",
"preversion": "git checkout master && git pull && npm ls",
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish",
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish",
"publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/MRN-Code/freesurfer-parser.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/MRN-Code/freesurfer-parser/issues"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"homepage": "https://github.com/MRN-Code/freesurfer-parser"
}