-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
26 lines (26 loc) · 941 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
{
"name": "android-stations",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/SuguruOoki/android-stations.git",
"author": "Hikaru Terazono (3c1u) <3c1u@tohkani.com>",
"license": "MIT",
"dependencies": {
"@techtrain/cli-railway": "0.2.3"
},
"devDependencies": {
"jest": "^27.0.6",
"simple-git-hooks": "^2.5.1"
},
"scripts": {
"login:techtrain": "techtrain-railway login",
"hook:pre-commit": "command -v winpty >/dev/null 2>&1 && test -t 1 && exec < /dev/tty; techtrain-railway hook:pre-commit",
"hook:update": "simple-git-hooks",
"postinstall": "yarn hook:update && yarn login:techtrain",
"clean-test-result": "node .techtrain/utils/clean-test-result.js",
"run-unit-test": "node .techtrain/utils/run-unit-test.js"
},
"simple-git-hooks": {
"pre-commit": "yarn hook:pre-commit"
}
}