-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "nci-webtools-ccr-cptac-search",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"format": "prettier --write --ignore-unknown .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CBIIT/nci-webtools-ccr-cptac-search.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CBIIT/nci-webtools-ccr-cptac-search/issues"
},
"homepage": "https://github.com/CBIIT/nci-webtools-ccr-cptac-search#readme",
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"quoteProps": "consistent",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"htmlWhitespaceSensitivity": "ignore",
"singleQuote": false,
"jsxBracketSameLine": true
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}