This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
148 lines (148 loc) · 4.03 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
139
140
141
142
143
144
145
146
147
148
{
"name": "ignite-bowser",
"description": "Infinite Red's hot boilerplate for React Native.",
"license": "MIT",
"repository": "infinitered/ignite-bowser",
"homepage": "https://github.com/infinitered/ignite-bowser",
"version": "5.4.1",
"files": [
"boilerplate.js",
"boilerplate",
"build",
"templates",
"plugin.js",
"readme.md"
],
"author": {
"name": "Infinite Red",
"email": "[email protected]",
"url": "https://github.com/infinitered/ignite-bowser"
},
"scripts": {
"format": "npm-run-all format:*",
"format:js": "prettier --write '**/*.js'",
"format:json": "prettier --write '**/*.json'",
"format:md": "prettier --write '**/*.md'",
"format:ts": "prettier --write '**/*.ts{,x}'",
"lint": "eslint src test --ext .ts --fix",
"test": "yarn build && yarn lint && jest --runInBand && yarn clean",
"watch": "jest --runInBand --watch",
"coverage": "jest --runInBand --coverage",
"ci:lint": "eslint src test --ext .ts",
"ci:test": "yarn build && jest --runInBand && yarn ci:lint && yarn clean",
"ci:publish": "yarn build && yarn semantic-release && yarn clean",
"semantic-release": "semantic-release",
"build": "yarn compile",
"compile": "tsc -p .",
"clean": "rm -rf ./build"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"prettier",
"plugin:@typescript-eslint/recommended",
"standard"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"plugins": [
"@typescript-eslint"
],
"globals": {
"__DEV__": false,
"jasmine": false,
"beforeAll": false,
"afterAll": false,
"beforeEach": false,
"afterEach": false,
"test": false,
"expect": false,
"describe": false,
"jest": false,
"it": false
},
"rules": {
"comma-dangle": 0,
"no-unused-vars": 0,
"no-undef": 0,
"quotes": 0,
"space-before-function-paren": 0,
"@typescript-eslint/indent": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/member-delimiter-style": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-object-literal-type-assertion": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-var-requires": 0
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": false,
"trailingComma": "all"
},
"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}"
}
]
]
},
"devDependencies": {
"@semantic-release/git": "^7.0.17",
"@types/jest": "^24.0.19",
"@types/node": "^12.12.4",
"@types/ramda": "0.26.36",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fs-jetpack": "^2.2.3",
"gluegun": "^4.0.2",
"jest": "^24.9.0",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"semantic-release": "^15.13.28",
"sinon": "^7.5.0",
"tempy": "^0.3.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {
"ramda": "^0.26.1",
"read-pkg-up": "^7.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules",
"/boilerplate"
],
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
}