This repository was archived by the owner on Sep 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"private": true,
"workspaces": ["packages/*", "examples/*"],
"license": "MIT",
"author": "Chris Getsfred <cgetsfred@gmail.com>",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"codecov": "^2.3.0",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-elderfo": "^1.2.5",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"faker": "^4.1.0",
"husky": "^0.14.3",
"jest": "^21.0.2",
"lerna": "^2.1.2",
"lint-staged": "^4.1.3",
"micro": "^9.0.0",
"npm-run-all": "^4.1.1",
"prettier": "^1.6.1",
"rimraf": "^2.6.2"
},
"scripts": {
"build":
"rimraf dist/ && babel packages/microrouter-test-server/src --ignore *.test.js --out-dir dist --copy-files",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage && codecov",
"lint": "eslint .",
"ci": "npm-run-all test:ci lint build",
"precommit": "lint-staged",
"clean-all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules"
},
"jest": {
"modulePathIgnorePatterns": ["./package.json"],
"testPathIgnorePatterns": ["/node_modules/"],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/examples/**",
"!**/node_modules/**",
"!**/vendor/**",
"!**/dist/**",
"!**/coverage/**"
],
"coverageDirectory": "./coverage/"
},
"repository": {
"type": "git",
"url": "https://github.com/elderfo/microrouter-test-server.git"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"jest --bail --findRelatedTests",
"eslint",
"git add"
]
}
}