-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "saby-types",
"version": "23.2100.0",
"repository": {
"type": "git",
"url": "git@git.sbis.ru:saby/Types.git"
},
"license": "MIT",
"files": [
"index.ts",
"Types/*"
],
"scripts": {
"build": "npm run build:install && npm run build:typescript && npm run build:app",
"build:install": "wasaby-cli loadProject",
"build:typescript": "wasaby-cli initTSEnv",
"build:app": "wasaby-cli buildProject --watcher",
"start": "wasaby-cli runUnitTests --server",
"test": "wasaby-cli runUnitTests --NodeJS --report=console",
"test:coverage": "wasaby-cli runUnitTests --NodeJS --coverage",
"update-cli-store": "wasaby-cli loadProject",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:css": "stylelint \"**/*.{css,less}\"",
"lint:css:fix": "stylelint \"**/*.{css,less}\" --fix",
"prettier": "prettier --write .",
"prepare": "npm run update-cli-store && npm run build:typescript && wasaby-cli initGitHooks"
},
"wasaby-cli": {
"preCommitHooks": [
"Prettier",
"ESLint",
"Stylelint"
]
},
"devDependencies": {
"wasaby-cli": "git+https://git.sbis.ru/saby/wasaby-cli.git#rc-23.2100"
}
}