forked from infinitered/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.31 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "ignite-cli",
"version": "3.5.1",
"description": "An unfair headstart for your React Native apps. Save 2+ weeks of development!",
"bin": {
"ignite": "bin/ignite"
},
"preferGlobal": true,
"scripts": {
"clean-build": "rm -rf ./build",
"format": "prettier --write \"{**/*.ts,**/*.js,.circleci/**/*.js}\" --loglevel error && tslint -p . --fix",
"compile": "tsc -p .",
"copy-files": "mkdir -p ./build/cli && cp ./src/cli/*.js ./build/cli/ && cp -a ./src/templates ./build/",
"build": "yarn clean-build && yarn format && yarn compile && yarn copy-files",
"test": "jest tests/fast",
"watch": "jest tests/fast --watch",
"lint": "tslint -p .",
"integration": "jest --runInBand tests/integration",
"ci:test": "yarn test && yarn integration",
"ci:publish": "yarn build && yarn semantic-release",
"semantic-release": "semantic-release"
},
"repository": "infinitered/ignite",
"author": {
"name": "Infinite Red",
"email": "[email protected]",
"url": "https://github.com/infinitered/ignite"
},
"contributors": [
"https://github.com/infinitered/ignite/graphs/contributors"
],
"files": [
"readme.md",
"build",
"bin"
],
"license": "MIT",
"devEngines": {
"node": ">=7.x",
"npm": ">=4.x"
},
"dependencies": {
"@hapi/cryptiles": ">=4.1.2",
"@types/ramda": "^0.26.18",
"execa": "2.0.3",
"fs-jetpack": "2.2.2",
"gluegun": "^4.1.0",
"lodash": ">=4.17.15",
"minimist": "1.2.0",
"mixin-deep": ">=2.0.1",
"pretty-error": "2.1.1",
"ramda": "0.26.1",
"ramdasauce": "2.1.3",
"semver": "6.3.0",
"shelljs": "0.8.3",
"which": "1.3.1"
},
"devDependencies": {
"@semantic-release/git": "^7.0.16",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.9",
"@types/ora": "^3.0.0",
"babel-eslint": "10.0.2",
"husky": "2.2.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.1",
"mock-fs": "4.10.1",
"mockery": "2.1.0",
"prettier": "^1.18.2",
"semantic-release": "^15.13.19",
"tempy": "^0.3.0",
"ts-jest": "^24.0.2",
"ts-node": "7.0.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"__DEV__"
]
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint --fix",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": "package.json",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}