-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (29 loc) · 859 Bytes
/
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
{
"name": "RNWebViewWithVisaCheckout",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:swashcap/RNWebViewWithVisaCheckout.git",
"author": "Cory Reed <swashcap@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"flow-bin": "^0.78.0",
"husky": "^1.1.2",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3"
},
"scripts": {
"flow": "flow",
"prettier": "prettier --write 'client/**/*.js' 'server/**/*.js'",
"test:client": "yarn --cwd \"$PWD/client\" run test",
"test:server": "yarn --cwd \"$PWD/server\" run test"
},
"husky": {
"hooks": {
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run prettier && yarn run flow && yarn run run-p test:*"
}
}
}