-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"name": "@schuchard/ng-schematics",
"version": "0.1.0",
"description": "Schematic collection",
"private": true,
"scripts": {
"bootstrap": "yarn && lerna bootstrap",
"l": "lerna",
"build": "lerna run build",
"test": "yarn build && lerna run test --stream",
"test:unit": "lerna run test:unit --stream",
"clean": "lerna run clean",
"publish": "yarn build && lerna publish"
},
"keywords": [
"schematics"
],
"workspaces": [
"packages/*"
],
"license": "MIT",
"devDependencies": {
"@types/inquirer": "6.5.0",
"@types/jasmine": "^3.5.0",
"@types/lodash": "4.14.149",
"@types/node": "^12.12.14",
"ava": "2.4.0",
"husky": "3.1.0",
"jasmine": "^3.5.0",
"lerna": "^3.19.0",
"lint-staged": "9.5.0",
"prettier": "~1.19.1",
"ts-node": "8.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,ts}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
}
}