forked from jamonholmgren/mst-async-storage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
68
{
"version": "0.2.0",
"name": "mst-async-storage",
"description": "Brings AsyncStorage support to mobx-state-tree for React Native projects.",
"license": "MIT",
"author": {
"name": "Steve Kellock",
"email": "[email protected]",
"url": "https://github.com/skellock"
},
"repository": "https://github.com/skellock/mst-async-storage",
"homepage": "https://github.com/skellock/mst-async-storage",
"main": "dist/mst-async-storage.umd.js",
"module": "dist/mst-async-storage.es5.js",
"typings": "dist/mst-async-storage.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-keychain": "^3.1.2"
},
"devDependencies": {
"@types/lodash.camelcase": "4.3.4",
"@types/react-native": "0.56.18",
"ava": "0.25.0",
"lodash.camelcase": "4.3.0",
"mobx": "5.1.1",
"mobx-state-tree": "3.3.0",
"npm-run-all": "4.1.3",
"react-native-keychain": "^3.1.2",
"prettier": "1.14.2",
"react-native": "0.57.0",
"rimraf": "2.6.2",
"rollup": "0.65.2",
"rollup-plugin-commonjs": "9.1.6",
"rollup-plugin-filesize": "4.0.1",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-sourcemaps": "0.4.2",
"testdouble": "^3.8.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"typescript": "3.0.3"
},
"ava": {
"files": [
"build/**/*.test.js"
]
}
}