-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1023 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "obs-store",
"version": "2.4.1",
"description": "`ObservableStore` is a synchronous in-memory store for a single value, that you can subscribe to updates on.",
"main": "index-es5.js",
"scripts": {
"test": "tape test/**/*.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"babelify": "^7.3.0",
"readable-stream": "^2.2.2",
"through2": "^2.0.3",
"xtend": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"mississippi": "^1.2.0",
"tape": "^4.6.3"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kumavis/obs-store.git"
},
"bugs": {
"url": "https://github.com/kumavis/obs-store/issues"
},
"homepage": "https://github.com/kumavis/obs-store#readme"
}