forked from gas-buddy/mst-async-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
67
{
"version": "0.0.3",
"name": "mst-async-storage-2",
"description": "Brings async storage support to mobx-state-tree for React Native projects.",
"license": "MIT",
"author": {
"name": "Steve Kellock",
"email": "steve@kellock.ca",
"url": "https://github.com/skellock"
},
"repository": "https://github.com/gas-buddy/mst-async-storage-2",
"homepage": "https://github.com/gas-buddy/mst-async-storage-2",
"main": "dist/mst-async-storage-2.umd.js",
"module": "dist/mst-async-storage-2.es5.js",
"typings": "dist/mst-async-storage-2.d.ts",
"files": [
"dist",
"LICENSE",
"readme.md"
],
"scripts": {
"compile": "tsc",
"prebuild": "tsc",
"build": "rollup -c rollup.config.ts",
"clean": "npm-run-all clean:*",
"clean:build": "rimraf build",
"clean:dist": "rimraf dist",
"format": "prettier --write {**,.}/*.ts && tslint -p . --fix",
"lint": "tslint -p .",
"prepare": "yarn build",
"test:ci": "npm-run-all clean:* test:compile test",
"test:compile": "tsc -p tsconfig-test.json --pretty",
"test:compile:watch": "tsc -p tsconfig-test.json --pretty --watch",
"test": "ava -s",
"e2e": "npm-run-all clean:* compile test:compile test clean:* compile build"
},
"peerDependencies": {
"mobx-state-tree": "2.x || 3.x",
"react-native-mmkv": "2.x"
},
"devDependencies": {
"@types/lodash.camelcase": "4.3.6",
"ava": "^3.15.0",
"lodash.camelcase": "4.3.0",
"mobx": "6.13.5",
"mobx-state-tree": "5.4.2",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"react-native-mmkv": "2.12.2",
"rimraf": "^3.0.2",
"rollup": "1.21.4",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "6.2.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sourcemaps": "0.4.2",
"testdouble": "^3.16.1",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "^4.2.4"
},
"ava": {
"files": [
"build/**/*.test.js"
]
}
}