-
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.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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": "multishot",
"version": "1.0.0",
"description": "Multi-iterative analysis algorithms.",
"main": "src/index.js",
"scripts": {
"lint": "eslint src test",
"preversion": "git checkout master && git pull && npm ls",
"publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish",
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish",
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish",
"test": "istanbul cover test/_coverage.js",
"validate": "npm ls"
},
"keywords": [
"coinstac",
"algorithm",
"multishot",
"iterative"
],
"author": "Cory Reed <creed@mrn.org>",
"license": "MIT",
"dependencies": {
"coinstac-distributed-algorithm-set": "github:mrn-code/coinstac-distributed-algorithm-set",
"freesurfer-parser": "github:mrn-code/freesurfer-parser",
"lodash": "^4.6.1",
"numeric": "^1.2.6"
},
"devDependencies": {
"deep-freeze": "0.0.1",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.0",
"istanbul": "^0.4.2",
"pre-commit": "^1.1.2",
"sinon": "^1.17.3",
"tape": "^4.5.1"
},
"pre-commit": [
"validate",
"lint",
"test"
]
}