-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "expositional",
"version": "1.0.3",
"description": "Review Apps for expo - building a release per pull request with notifications to Github",
"main": "dist/index.js",
"scripts": {
"run": "ts-node src/index.ts",
"lint": "eslint src/*ts --fix",
"build": "rm -rf ./dist && tsc",
"prepare": "npm run build"
},
"bin": {
"expositional": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"expo",
"react-native",
"semaphore",
"ci",
"github",
"pullrequest",
"notifications",
"review",
"apps"
],
"repository": {
"type": "git",
"url": "https://github.com/railslove/expositional"
},
"author": "Frederik Bonfanti <freddy@railslove.com>",
"license": "MIT",
"dependencies": {
"@octokit/core": "^3.2.4",
"commander": "^6.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false
}
}