-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.51 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@bufferapp/async-data-fetch",
"version": "2.1.0",
"description": "Fetch data from RPC backend",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js test/ src/",
"test": "npm run lint && jest",
"test-watch": "jest --watch",
"build": "babel src -d lib",
"prepublish": "babel src -d lib"
},
"author": "[email protected]",
"files": [
"lib",
"src"
],
"dependencies": {
"@bufferapp/micro-rpc-client": "^1.4.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"deep-freeze": "^0.0.1",
"eslint": "^5.3.0",
"eslint-plugin-prettier": "^2.6.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"then-sleep": "^1.0.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8"
},
"browsers": "> 3%"
}
]
],
"plugins": [
"transform-export-extensions"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
2,
{
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"bracketSpacing": true
}
],
"no-unused-vars": 2
}
},
"publishConfig": {
"access": "public"
}
}