-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "waffle",
"version": "0.0.1",
"description": "Mobx adapter for gun.js",
"main": "index.js",
"web": "waffle.min.js",
"scripts": {
"build:babel": "babel -d lib/ src/",
"prepublish": "npm run build:babel",
"fix": "standard --parser babel-eslint --fix src",
"lint": "eslint --ext .js src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"gun": "0.9.997",
"mobx": "4.3.0",
"core-js": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.49",
"@babel/core": "7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.49",
"@babel/preset-env": "7.0.0-beta.49",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"eslint": "^4.18.2",
"eslint-config-standard": "11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mochiapp/waffle.git"
},
"keywords": [
"gun.js",
"mobx",
"javascript"
],
"author": "Jonathan Frazier, Robert Heessels",
"license": "MIT",
"bugs": {
"url": "https://github.com/mochiapp/waffle/issues"
},
"homepage": "https://github.com/mochiapp/waffle#readme",
"standard": {
"parser": "babel-eslint"
}
}