-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "spank",
"version": "2.2.1",
"description": "",
"bin": {
"spank": "cli.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/roxiness/spank.git"
},
"scripts": {
"test": "probs test",
"publish": "npx standard-version"
},
"type": "module",
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.1.0",
"configent": "^3.0.0-14",
"fs-extra": "^10.1.0",
"node-html-parser": "^1.2.21",
"tossr": "^1.4.1"
},
"devDependencies": {
"probs": "^1.3.3"
},
"prettier": {
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid",
"semi": false,
"useTabs": false,
"tabWidth": 4,
"printWidth": 90,
"svelteSortOrder": "options-scripts-markup-styles",
"svelteAllowShorthand": true,
"svelteBracketNewLine": false,
"svelteIndentScriptAndStyle": true
}
}