-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.44 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.44 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "minify-kit-dev",
"version": "1.0.0",
"description": "Minify-kit private NPM package development",
"private": true,
"main": "src/index.js",
"scripts": {
"pretty": "prettifier",
"lint": "eslint",
"lint:fix": "eslint --fix",
"disable": "disable-validation",
"postinstall": "install",
"commit:src": "commit-src",
"push": "push",
"flow:stop": "flowstop",
"watch": "flow-node --watch demo",
"demo": "flow-node demo",
"demo:esm": "demo-esm"
},
"keywords": [],
"author": "Fabrice Sanga (https://github.com/sangafabrice)",
"license": "ISC",
"type": "module",
"workspaces": [
"src",
"build"
],
"devDependencies": {
"flow-bin": "^0.302.0",
"flow-remove-types": "^2.302.0"
},
"prettier": {
"endOfLine": "lf",
"trailingComma": "none",
"arrowParens": "avoid",
"bracketSameLine": false,
"experimentalOperatorPosition": "end",
"htmlWhitespaceSensitivity": "strict",
"objectWrap": "collapse",
"printWidth": 60,
"singleAttributePerLine": true,
"tabWidth": 4,
"overrides": [
{
"files": [
"**/*.json",
"**/.prettierrc"
],
"options": {
"printWidth": 30,
"tabWidth": 2
}
},
{
"files": [
"demo/*.*",
"src/**/*.js.flow",
"flow-typed/*.js"
],
"options": {
"parser": "flow"
}
}
]
}
}