forked from technology-studio/debounce-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.41 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
{
"name": "@txo/debounce-promise",
"version": "1.0.0",
"description": "Technology Studio - Debounce promise",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/technology-studio/debounce-promise.git"
},
"author": {
"name": "Technology Studio",
"email": "[email protected]",
"url": "https://github.com/technology-studio/"
},
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean --force",
"newclear": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build && rm -rf node_modules/ && npm cache clean --force && npm i",
"test:watch": "jest --watch",
"updateSnapshot": "jest --updateSnapshot",
"coverage": "jest --coverage && open coverage/lcov-report/index.html || xdg-open coverage/lcov-report/index.html",
"lintdiff": "git diff --name-only --cached --relative | grep '\\.js$' | eslint --cache --format=node_modules/eslint-formatter-pretty",
"lint": "eslint --format=node_modules/eslint-formatter-pretty .",
"fixcode": "eslint --format=node_modules/eslint-formatter-pretty . --fix",
"git-hook": "yarn -s lint"
},
"husky": {
"hooks": {
"pre-commit": "yarn run git-hook",
"pre-push": "yarn run git-hook"
}
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0",
"@txo/babel-preset": "^1.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"eslint-config-txo-react": "^2.0.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.86.0",
"flow-typed": "^2.5.0",
"glow": "technology-studio-forks/glow#fix/flow-version-boundaries",
"husky": "^1.1.3",
"jest": "^23.6.0"
},
"jest": {
"testMatch": [
"<rootDir>/__tests__/**/*.js",
"**/?(*.)(spec|test).js?(x)"
],
"transformIgnorePatterns": [
"/node_modules/(?!@txo).+\\.js$"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/__tests__/Setup.js"
],
"setupFiles": [
"<rootDir>/__tests__/Setup"
]
}
}