-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 916 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
31
{
"name": "yarn-2-completion",
"version": "0.0.1",
"main": "index.js",
"description": "Yarn 2 completion for Bash 3+",
"keywords": [
"yarn 2 completion",
"yarn completion",
"yarn"
],
"repository": "git@github.com:liuruenshen/yarn-completion.git",
"author": "kiwi <kiwi71728@icloud.com>",
"license": "MIT",
"devDependencies": {
"husky": "^6.0.0",
"npm-run-all": "^4.1.5",
"pinst": "^2.0.0"
},
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"lint": "./src/dev/lint.sh",
"docker:pull": "./src/dev/pull-docker.sh",
"docker:build": "./src/dev/build-docker.sh",
"test:prepare": "./src/dev/prepare-test.sh",
"test:run": "./src/dev/run-test.sh \"$@\"",
"test": "npm-run-all lint 'test:* {@}'",
"test-local": "Y2C_TEST_LOCAL_MODE=1 npm-run-all lint 'test:* {@}'"
}
}