This repository has been archived by the owner on Aug 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "webpack-watchman-plugin",
"version": "1.1.0",
"description": "A webpack plugin that integrates watchman as its watcher.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib --ignore __tests__",
"flow": "flow",
"format": "eslint --fix src test",
"lint": "eslint src test",
"precommit": "yarn run flow && lint-staged",
"prepublish": "yarn run clean && cross-env NODE_ENV=production yarn run build",
"preversion": "yarn test",
"test": "jest",
"test:coverage": "yarn test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/researchgate/webpack-watchman-plugin.git"
},
"files": [
"lib"
],
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"webpack",
"watchman",
"researchgate",
"facebook",
"watch",
"plugin"
],
"author": "Daniel Tschinder <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/researchgate/webpack-watchman-plugin/issues"
},
"homepage": "https://github.com/researchgate/webpack-watchman-plugin#readme",
"devDependencies": {
"@researchgate/eslint-config-rg-node-babel": "^4.0.0",
"babel-cli": "^6.9.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-flow": "^6.23.0",
"cross-env": "^5.0.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.3.0",
"flow-bin": "^0.75.0",
"fs-extra": "^6.0.0",
"husky": "^0.14.3",
"jest": "^22.0.6",
"lint-staged": "^7.0.0",
"prettier": "^1.6.1",
"rimraf": "^2.5.2"
},
"dependencies": {
"async": "^2.0.0",
"debug": "^3.0.0",
"fb-watchman": "^2.0.0"
},
"lint-staged": {
"test/*.js": [
"eslint --fix",
"git add"
],
"test/helpers/**/*.js": [
"eslint--fix",
"git add"
],
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text",
"json"
],
"roots": [
"<rootDir>/src/"
]
}
}