This repository was archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.68 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.68 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": "formation",
"private": true,
"engines": {
"node": ">=6.0",
"npm": ">=4.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna run clean && lerna clean --yes && rimraf ./node_modules",
"lint": "lerna run lint --stream",
"test": "lerna run test",
"build": "lerna run build",
"prepare": "run-s bootstrap lint build test",
"prerelease": "lerna updated && npm run prepare",
"release": "lerna publish --conventional-commits",
"release:canary": "npm run release -- --npm-tag=canary",
"release:beta": "npm run release:canary -- --cd-version=prerelease --preid=beta",
"start": "(cd packages/formation-demo; npm start)"
},
"devDependencies": {
"husky": "0.14.x",
"lerna": "^2.9.0",
"npm-run-all": "4.x",
"rimraf": "2.6.x"
},
"workspaces": [
"packages/*"
],
"xo": {
"env": [
"browser",
"jest"
],
"space": true,
"rules": {
"indent": [
"error",
2,
{
"MemberExpression": "off",
"SwitchCase": 1
}
],
"capitalized-comments": "warn",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unassigned-import": "off",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"max-nested-callbacks": "off",
"max-params": "off",
"new-cap": "off",
"no-multiple-empty-lines": "off",
"no-prototype-builtins": "off",
"prefer-arrow-callback": "off",
"space-before-function-paren": [
"error",
{
"named": "always"
}
],
"unicorn/filename-case": "off"
}
}
}