-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
{
"name": "gun-edge",
"version": "0.8.8",
"description": "Gun chain extensions for a higher level DSL and API",
"main": "edge/index.js",
"scripts": {
"test": "ava",
"watch": "gulp watch",
"watch:b": "gulp watch:b",
"start": "gulp start",
"build": "gulp build",
"watch:play": "gulp watch:play",
"build:play": "gulp build:play"
},
"repository": {
"type": "git",
"url": "https://github.com/kristianmandrup/gun-edge.git"
},
"keywords": [
"gun",
"edge",
"db",
"dsl",
"api",
"extension",
"chaining"
],
"author": "Kristian Mandrup <[email protected]>",
"license": "MIT",
"dependencies": {
"gun": "^0.6.6"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.24.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-livereload": "^3.8.1",
"gulp-sourcemaps": "^2.4.0",
"js-csp": "^0.9.2",
"rxjs": "^5.2.0",
"transducers-js": "^0.4.174",
"xstream": "^10.3.0",
"zen-observable": "^0.5.1"
},
"ava": {
"source": [
"src/**/*.{js}",
"!dist/**/*"
],
"modules": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}