-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 1.98 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fambit",
"version": "0.1.0",
"description": "WebExtension to microdonate to visited websites",
"scripts": {
"dev": "webpack --watch --env.prod=false",
"test": "ava",
"lint": "eslint ./app ./test",
"dist": "webpack --env.prod=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fambit-app/fambit.git"
},
"keywords": [
"bitcoin",
"donate",
"webextension",
"chrome",
"firefox",
"opera",
"bc"
],
"author": "Mitchell Hentges/Sheldon Roddick",
"license": "ISC",
"bugs": {
"url": "https://github.com/fambit-app/fambit/issues"
},
"homepage": "https://github.com/fambit-app/fambit#readme",
"dependencies": {
"bitcoinjs-lib": "^2.2.0",
"raven-js": "^3.9.1"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-eslint": "^7.2.3",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"json-loader": "^0.5.4",
"webpack": "^3.4.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base",
"rules": {
"indent": [
"error",
4
],
"no-plusplus": 0,
"import/no-extraneous-dependencies": 0,
"no-console": 0,
"comma-dangle": 0,
"consistent-return": 0,
"func-names": 0,
"linebreak-style": 0,
"max-len": 0,
"no-continue": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"quote-props": 0,
"valid-jsdoc": 0,
"vars-on-top": 0,
"spaced-comment": 0,
"radix": 0,
"new-cap": 0,
"no-return-assign": 0,
"eol-last": 0,
"object-curly-spacing": 0,
"no-restricted-syntax": 0
},
"globals": {
"window": true,
"document": true,
"XMLHttpRequest": true,
"chrome": true,
"browser": true,
"localStorage": true,
"WebSocket": true
}
},
"ava": {
"files": [
"test/*tests.js"
]
}
}