-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.88 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "dime-webextension",
"description": "web extensions for different browsers",
"main": "none",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run dev:webextension\" \"npm run dev:safari\"",
"dev:webextension": "gulp clean:webextension && webpack --config webpack.webextension.js --watch --colors",
"dev:safari": "gulp clean:safari && webpack --config webpack.safari.js --watch --colors",
"build": "npm run build:webextension && npm run build:safari",
"build:webextension": "gulp clean:webextension && webpack --config webpack.webextension.prod.js",
"build:safari": "gulp clean:safari && webpack --config webpack.safari.js && gulp safari",
"dist:chrome": "gulp clean:webextension && gulp clean:chrome && webpack --config webpack.webextension.prod.js && gulp chrome-zip-for-dist",
"dist:firefox": "npm run build:webextension && rm -rf ./dist/firefox && mkdir -p ./dist/firefox && web-ext sign --source-dir ./build/webextension --artifacts-dir ./dist/firefox --api-key=$API_KEY --api-secret=$API_SECRET"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HIIT/dime-webextension.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HIIT/dime-webextension/issues"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"arrow-body-style": [
2,
"as-needed"
],
"comma-dangle": [
2,
"always-multiline"
],
"import/imports-first": 0,
"import/newline-after-import": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-unresolved": 2,
"import/prefer-default-export": 0,
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"max-len": 0,
"no-global-assign": 0,
"no-unsafe-negation": 0,
"newline-per-chained-call": 0,
"no-console": 1,
"no-use-before-define": 0,
"prefer-template": 2,
"require-yield": 0
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./webpack.test.babel.js"
}
}
}
},
"homepage": "https://github.com/HIIT/dime-webextension#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.13.2",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.16.0",
"concurrently": "^3.1.0",
"copy-webpack-plugin": "^2.1.1",
"css-loader": "^0.23.1",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-import-resolver-webpack": "^0.6.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-crx-pack": "^1.0.1",
"gulp-zip": "^3.2.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"run-sequence": "^1.2.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"web-ext": "^1.4.0",
"webpack": "^1.12.9",
"webpack-stream": "^3.1.0"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"cheerio": "^0.20.0",
"domurl": "^2.1.7",
"ineed": "^1.0.4",
"jquery": "^2.2.3",
"leven": "^2.0.0",
"readability-js": "^1.0.7",
"stopwords": "0.0.5",
"talisman": "^0.3.0",
"underscore": "^1.8.3"
}
}