-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
52
53
54
55
56
57
{
"name": "react-native-zano",
"version": "0.2.8",
"description": "React Native bindings for the Zano blockchain",
"homepage": "https://github.com/EdgeApp/react-native-zano",
"repository": {
"type": "git",
"url": "git@github.com:EdgeApp/react-native-zano.git"
},
"license": "BSD-3-Clause",
"author": "Airbitz, Inc.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"/android/build.gradle",
"/android/src/",
"/CHANGELOG.md",
"/ios/",
"/lib/",
"/package.json",
"/react-native-zano.podspec",
"/README.md",
"/src/zano-wrapper/zano-methods.hpp"
],
"lint-staged": {
"*.{js,ts}": "eslint"
},
"scripts": {
"fix": "npm run lint -- --fix",
"lint": "eslint .",
"prepack": "npm run update-sources",
"prepare": "husky install && lint-staged && rimraf lib && tsc",
"update-sources": "ZERO_AR_DATE=1 node -r sucrase/register ./scripts/update-sources.ts"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"disklet": "^0.4.6",
"eslint": "^8.57.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^7.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"sucrase": "^3.16.0",
"typescript": "5.0.4"
},
"dependencies": {
"cleaners": "^0.3.17"
}
}