forked from egoist/poi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 990 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 990 Bytes
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
{
"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/**"
],
"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
}
},
"repository": "git@github.com:egoist/poi.git",
"author": "EGOIST <0x142857@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint-config-rem": "^3.0.1",
"husky": "^0.13.3",
"lerna": "^2.0.0-rc.4",
"xo": "^0.18.1"
}
}