-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.41 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "disklet",
"version": "0.5.2",
"description": "A tiny, composable filesystem API",
"homepage": "https://github.com/EdgeApp/disklet",
"repository": {
"type": "git",
"url": "git@github.com:Airbitz/disklet.git"
},
"license": "MIT",
"author": "Airbitz, Inc.",
"contributors": [
"William Swanson <william@airbitz.co>",
"Paul Puey <paul@airbitz.co>"
],
"main": "lib/disklet.cjs.js",
"module": "lib/disklet.js",
"browser": "lib/disklet.web.js",
"types": "lib/src/index.d.ts",
"files": [
"android/build.gradle",
"android/src",
"CHANGELOG.md",
"disklet.podspec",
"ios/Disklet.h",
"ios/Disklet.m",
"ios/Disklet.xcodeproj",
"ios/Disklet.xcworkspace",
"lib",
"package.json",
"README.md",
"src"
],
"scripts": {
"fix": "eslint . --fix",
"lint": "eslint .",
"precommit": "lint-staged && npm test && npm run prepare",
"prepare": "husky install && rimraf lib && rollup -c && tsc",
"test": "mocha -r sucrase/register test/**/*.test.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"dependencies": {
"rfc4648": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"@types/react-native": "^0.62.11",
"@types/rimraf": "^3.0.0",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"husky": "^7.0.0",
"lint-staged": "^10.5.3",
"mocha": "^9.1.3",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.61.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-flow-entry": "^0.3.6",
"sucrase": "^3.20.3",
"tmp": "^0.2.1",
"typescript": "^3.9.3"
},
"react-native": "lib/disklet.rn.js"
}