forked from bottenderjs/messaging-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"private": true,
"name": "messaging-apis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yoctol/messaging-apis.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "node ./scripts/build.js",
"clean": "rimraf ./packages/*/lib",
"precommit": "lint-staged",
"postinstall": "yarn run build",
"lint": "eslint packages examples",
"lint:fix": "yarn run lint:fix:md && yarn run lint --fix",
"lint:fix:md": "prettier --write **/*.md",
"lint:staged": "lint-staged",
"publish": "yarn run clean && yarn run build && lerna publish",
"test": "yarn run typecheck && yarn run lint && yarn run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit --no-cache",
"testonly:watch": "jest --watch",
"typecheck": "flow check"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.2",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-yoctol-base": "^0.15.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.68.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lerna": "^2.9.0",
"lint-staged": "^7.0.0",
"micromatch": "^3.1.10",
"mkdir": "^0.0.2",
"prettier": "^1.11.1",
"prettier-package-json": "^1.5.1",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=6"
},
"jest": {
"coverageDirectory": "./coverage/",
"transformIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
}
}