-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "adb-wrapper",
"version": "1.0.0",
"description": "Node js Wrapper for ADB",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"keywords": [
"android",
"adb",
"android debugging",
"wrapper",
"node js wrapper adb"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build --no-source-maps",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "husky install",
"uglify": " uglifyjs -o dist/main.js --compress --mangle -- dist/main.js && uglifyjs -o dist/module.js --compress --mangle -- dist/module.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrSharpp/adb-wrapper-node-js.git"
},
"author": {
"name": "Amir Alam",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MrSharpp/adb-wrapper-node-js/issues"
},
"homepage": "https://github.com/MrSharpp/adb-wrapper-node-js#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"uglify-js": "^3.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run format"
],
"dist/{main,module}.js": [
"npm run uglify"
]
}
}