-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.84 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
56
57
58
59
60
61
62
{
"name": "@maxjeffos/sweetcli",
"version": "1.16.0",
"description": "",
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"bin": {
"sweetcli": "dist/index.js"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "rm -rf dist && rm -rf packages/*/{dist,tsconfig.tsbuildinfo}",
"build": "tsc --build tsconfig.json",
"dev": "cd packages/eco-service-cocoapods && npm run dev",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"test:coverage": "npm run test:unit -- --coverage",
"test:watch": "tsc-watch --onSuccess 'npm run test:unit'",
"prepare": "./scripts/prepare.sh && npm run build",
"prepare-not-used": "npm run build && lerna run prepare",
"lint": "prettier --check 'packages/*/{src,test}/**/*.ts' && eslint 'packages/*/{src,test}/**/*.ts'",
"format": "prettier --write 'packages/*/{src,test}/**/*.ts' && eslint --fix 'packages/*/{src,test}/**/*.ts'"
},
"author": "",
"license": "private",
"private": false,
"workspaces": [
".",
"packages/*"
],
"dependencies": {
"@maxjeffos/protect": "^1.16.0",
"@maxjeffos/some-top-level-command": "^1.16.0",
"@maxjeffos/woof": "^1.16.0",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^12.12.11",
"@types/source-map-support": "^0.5.0",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"tsc-watch": "^4.0.0",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/maxjeffos/ts-yw-1.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}