-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "sidi-cli",
"version": "3.1.0",
"description": "SIDI is a human friendly tool to create the yaml to test, build, and deploy any mobile project via the chosen CICD.",
"homepage": "https://github.com/arhs-spikeseed-mobile/sidi-cli",
"author": "Imran Mentese <[email protected]>",
"types": "build/types/types.d.ts",
"bin": {
"sidi-cli": "bin/sidi-cli"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p ./",
"build": "yarn clean-build && yarn compile && yarn copy-files",
"prepublishOnly": "yarn build",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"tsc": "tsc",
"lint:fix": "yarn run lint --fix",
"prettier": "prettier --config .prettierrc --check \"src/**/*.ts\" --check \"SIDI/**/*.json\" --check \"SIDI/**/*.ts\"",
"prettier:fix": "prettier --config .prettierrc --write --check \"src/**/*.ts\" --check \"SIDI/**/*.json\" --check \"SIDI/**/*.ts\"",
"test": "TZ=UTC node_modules/.bin/jest --coverage --maxWorkers=50%",
"watch": "jest --watch",
"copy-files": "copyfiles -u 1 SIDI/**/*.yml build/SIDI/"
},
"files": [
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"fast-glob": "3.2.11",
"gluegun": "5.1.2",
"i18next": "21.6.13",
"js-yaml": "4.1.0",
"node-fetch": "2.6.7",
"pkginfo": "0.4.1",
"terminal-link": "2.1.1",
"xml2js": "0.4.23",
"yaml": "2.0.1"
},
"devDependencies": {
"@types/jest": "24.9.1",
"@types/node": "12.20.43",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"babel-jest": "26.6.3",
"copyfiles": "2.4.1",
"enzyme": "3.11.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.1.3",
"jest": "26.6.3",
"jest-html-reporters": "2.1.2",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"shelljs": "0.8.5",
"ts-jest": "26.5.3",
"ts-node": "9.1.1",
"typescript": "4.6.3"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"collectCoverage": true,
"verbose": true,
"reporters": [
"default",
"jest-html-reporters"
],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"modulePaths": [
"<rootDir>"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/SIDI/"
],
"modulePathIgnorePatterns": [
"<rootDir>/packager/",
"<rootDir>/SIDI/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/SIDI/",
"./config/*"
],
"testMatch": [
"**/__tests__/**/*.test.(js|ts|tsx)"
]
}
}