-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "@moh3n95/react-native-app-builder",
"version": "1.2.0",
"description": "Multiple builds with different params",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/src/bin.js",
"scripts": {
"test-ios": "ts-node ./src/bin.ts ios setting.json",
"test-android": "ts-node ./src/bin.ts android setting.json",
"lint": "eslint . --ext .ts,.tsx",
"build": "tsc",
"pkg": "npm run build && pkg ./dist/src/bin.js --out-path ./pkg",
"test": "jest --config=jest.config.json --collectCoverage",
"codecov": "codecov -t 5b2afc57-f118-422b-8241-161b93ed63e4"
},
"repository": {
"type": "git",
"url": "https://github.com/moh3n9595/react-native-app-builder.git"
},
"homepage": "https://github.com/moh3n9595/react-native-app-builder#readme",
"keywords": [
"node",
"react-native",
"bundler",
"builder"
],
"author": {
"name": "Mohsen Madani",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"boxen": "^4.1.0",
"colors": "^1.4.0",
"fs-extra": "^8.1.0",
"log-update": "^4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.9",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^2.18.0",
"codecov": "^3.7.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^26.0.1",
"jest-matcher-one-of": "^1.0.2",
"prettier": "2.0.1",
"ts-jest": "^22.4.1",
"ts-node": "^8.10.2",
"typescript": "^3.7.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}