-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 905 Bytes
/
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
{
"name": "json-mobx",
"version": "0.7.0",
"description": "Simple undo/redo and persistence for MobX",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tape built/test/**/*.js",
"coverage": "node fix-coverage.js && istanbul cover tape built/test/**/*.js",
"prepublish": "npm run build && npm run test",
"all": "npm run build && npm run test && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielearwicker/json-mobx.git"
},
"keywords": [
"mobx",
"persistence",
"json"
],
"author": "Daniel Earwicker <dan@earwicker.com>",
"license": "MIT",
"dependencies": {
"mobx": "^3.0.0"
},
"devDependencies": {
"@types/blue-tape": "^0.1.30",
"blue-tape": "^1.0.0",
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"typescript": "^2.1.6"
}
}