-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ygor-monorepo",
"private": true,
"scripts": {
"build": "run-s build-*",
"build-clean": "lerna exec -- del dist",
"build-node": "lerna exec -- babel src -d dist",
"lint": "run-s lint-*",
"lint-prettier": "prettier --ignore-path .gitignore --write \"**/*.{css,js}\"",
"lint-eslint": "eslint --ignore-path .gitignore --fix \"**/*.js\"",
"test": "nyc run-s test-*",
"test-node": "cross-env NODE_ENV=test blue-tape -r babel-register \"packages/*/test/*.js\" | tap-diff",
"report": "nyc report -r text-lcov | coveralls",
"publish": "run-s precommit && lerna publish",
"pretest": "run-s lint",
"precommit": "run-s test build && git add .",
"postinstall": "lerna bootstrap"
},
"author": "Shannon Moeller <[email protected]> (http://shannonmoeller.com)",
"homepage": "https://github.com/shannonmoeller/ygor#readme",
"repository": "shannonmoeller/ygor",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-whim": "^1.0.0",
"babel-register": "^6.26.0",
"blue-tape": "^1.0.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.4",
"del-cli": "^1.1.0",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-whim": "^3.1.0",
"husky": "^0.14.3",
"lerna": "^2.9.0",
"mock-fs": "^4.4.2",
"mute": "^2.0.6",
"npm-run-all": "^4.1.2",
"nyc": "^11.4.1",
"prettier": "^1.11.1",
"tap-diff": "^0.1.1"
},
"babel": {
"presets": [
"babel-preset-whim"
]
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"eslint-config-whim",
"eslint-config-prettier"
]
},
"nyc": {
"sourceMap": false,
"instrument": false,
"include": [
"**/src/**"
],
"reporter": [
"lcov",
"text"
]
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
}
}