forked from mockdeep/typewiz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.17 KB
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
{
"private": true,
"scripts": {
"build-clean": "rimraf packages/*/dist",
"build": "lerna run build",
"format": "prettier --write packages/*/src/**.ts **/*.json",
"precommit": "lint-staged",
"prepublish": "yarn run build",
"lint": "lerna run lint",
"test": "jest",
"test:ci": "yarn run lint && jest --coverage && cat ./coverage/lcov.info | coveralls",
"test:watch": "jest --watch"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^23.3.9",
"copyfiles": "^1.2.0",
"coveralls": "^3.0.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lerna": "^3.4.3",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"engines": {
"node": ">= 8.0.0",
"yarn": ">= 1.5.1"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"resolutions": {
"source-map": "0.6.1"
}
}