-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "bidi-mobx",
"version": "0.20.0",
"description": "Two-way binding is back, and this time it's respectable",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"build": "tsc && webpack",
"test": "tape built/test/**/*.js",
"coverage": "istanbul cover tape built/test/**/*.js",
"all": "npm run build && npm run test && npm run coverage",
"prepublish": "npm run build && npm run test && npm run docs",
"watch": "webpack -w",
"docs": "node build-docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielearwicker/bidi-mobx.git"
},
"keywords": [
"mobx",
"react"
],
"author": "Daniel Earwicker <dan@earwicker.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielearwicker/bidi-mobx/issues"
},
"homepage": "https://github.com/danielearwicker/bidi-mobx#readme",
"dependencies": {
"boxm": "^0.4.1"
},
"devDependencies": {
"@types/blue-tape": "^0.1.30",
"@types/react": "^15.0.1",
"@types/react-dom": "^0.14.20",
"blue-tape": "^1.0.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mapped-array-mobx": "^0.1.0",
"mobx": "^3.0.0",
"mobx-react": "^4.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"styled-components": "^1.4.3",
"ts-loader": "^1.3.3",
"typescript": "^2.2.1",
"webpack": "^1.14.0"
},
"peerDependencies": {
"mobx": "^3.0.0",
"mobx-react": "^4.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}