-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.3 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
{
"name": "setup-ci",
"version": "0.6.0",
"description": "Effortlessly generate GitHub workflows for the most popular CI tasks in your React Native project.",
"types": "build/types/types.d.ts",
"bin": {
"setup-ci": "bin/setup-ci"
},
"scripts": {
"clean-build": "rimraf -rf ./build",
"compile": "tsc -p .",
"copy-templates": "cp -r ./src/templates/ ./build/templates",
"build": "yarn clean-build && yarn compile && yarn copy-templates",
"build:dev": "sed -i 's/\"name\": \"setup-ci\"/\"name\": \"react-native-ci-cli\"/g' package.json && yarn build",
"bump:dev": "node scripts/bump-version-dev.ts",
"prepublishOnly": "yarn build",
"test": "jest --runInBand --bail --verbose",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"ts:check": "tsc -p . --noEmit",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"prettier:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
},
"files": [
"build",
"LICENSE",
"readme.md",
"bin"
],
"license": "MIT",
"author": "Maciej Stosio <[email protected]>",
"keywords": [
"react-native",
"setup",
"CI",
"cli",
"CD"
],
"repository": "github:software-mansion/setup-ci",
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.7.0",
"gluegun": "5.1.6",
"is-git-dirty": "^2.0.2",
"lodash": "^4.17.21",
"look-it-up": "^2.1.0",
"pretty-file-tree": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jasmine-fail-fast": "^2.0.1",
"jest": "24.5.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semver": "^7.6.3",
"ts-jest": "24.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/__tests__/**/*.test.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup-after-env.js"
],
"maxWorkers": 1,
"testTimeout": 240000
}
}