forked from egoist/poi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.08 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
47
48
49
50
51
{
"private": true,
"name": "poi-monorepo",
"version": "0.0.0",
"scripts": {
"precommit": "npm test",
"test": "lerna bootstrap && npm run lint && lerna run test",
"lint": "xo"
},
"main": "index.js",
"xo": {
"esnext": true,
"extends": "rem",
"ignores": [
"examples/**",
"template/**",
"packages/*/dist/**",
"packages/*/example/**",
"**/coverage/**",
"**/output*/**",
"**/fixture/**",
"**/example-*/**",
"**/register-service-worker.js"
],
"envs": [
"jest"
],
"rules": {
"guard-for-in": 0,
"import/no-dynamic-require": 0,
"max-nested-callbacks": [
"error",
6
],
"capitalized-comments": 0,
"no-multi-assign": 0,
"complexity": 0,
"ava/no-ignored-test-files": 0
}
},
"repository": "[email protected]:egoist/poi.git",
"author": "EGOIST <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint-config-rem": "^3.2.0",
"husky": "^0.14.3",
"lerna": "^2.0.0",
"xo": "^0.18.2"
},
"dependencies": {}
}