-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "@rnv/sdk-android",
"version": "0.1.0",
"description": "ReNative Android SDK",
"main": "dist/index.js",
"bin": {
"sdk-android": "./dist/cli.js"
},
"scripts": {
"bootstrap": "yarn && yarn build && npm link",
"build": "npx tsc --outDir dist",
"watch": "tsc --watch",
"watch:all": "yarn watch & yarn test:watch",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renative-org/sdk-android.git"
},
"keywords": [],
"author": "Pavel Jacko <pavel.jacko@gmail.com> (https://github.com/pavjacko)",
"license": "MIT",
"bugs": {
"url": "https://github.com/renative-org/sdk-android/issues"
},
"homepage": "https://github.com/renative-org/sdk-android#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2",
"lint-staged": "8.1.0",
"husky": "4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
}
}