forked from honestbleeps/Reddit-Enhancement-Suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.76 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
{
"title": "Reddit Enhancement Suite",
"name": "reddit-enhancement-suite",
"version": "4.7.0",
"description": "A suite of modules that enhance your Reddit browsing experience",
"author": "Reddit Enhancement Suite",
"license": "GPL-3.0",
"private": true,
"homepage": "http://redditenhancementsuite.com/",
"repository": {
"type": "git",
"url": "https://github.com/honestbleeps/Reddit-Enhancement-Suite.git"
},
"scripts": {
"external-deps": "gem install scss_lint",
"preinstall": "npm -v && node -v && python --version && git rev-parse HEAD && git status --porcelain",
"prestart": "rimraf dist",
"start": "cross-env NODE_ENV=development webpack --watch --browsers",
"preonce": "rimraf dist",
"once": "cross-env NODE_ENV=development webpack --browsers",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack --browsers",
"postbuild": "gulp zip",
"test": "ava",
"eslint": "eslint .",
"scsslint": "scss-lint",
"lint": "npm run eslint && npm run scsslint",
"lint-fix": "eslint . --fix",
"coverage": "cross-env NODE_ENV=test nyc --all --require babel-core/register ava",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"files": [
"**/__tests__/*.js"
],
"require": [
"babel-core/register"
]
},
"nyc": {
"exclude": [
"dist",
"lib/vendor",
"**/__tests__"
]
},
"dependencies": {
"babel-polyfill": "6.9.1",
"babel-runtime": "6.9.2",
"favico.js": "0.3.10",
"jquery": "2.2.4",
"jquery-sortable": "0.9.13",
"konami": "1.3.3",
"lodash": "4.13.1",
"moment": "2.13.0",
"snudown-js": "1.4.0-2"
},
"devDependencies": {
"autoprefixer": "6.3.6",
"ava": "0.14.0",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-lodash": "3.1.0",
"babel-plugin-transform-dead-code-elimination": "2.0.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
"babel-plugin-transform-es2015-block-scoping": "6.9.0",
"babel-plugin-transform-es2015-classes": "6.9.0",
"babel-plugin-transform-es2015-destructuring": "6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.8.0",
"babel-plugin-transform-es2015-parameters": "6.9.0",
"babel-plugin-transform-es2015-spread": "6.8.0",
"babel-plugin-transform-node-env-inline": "6.8.0",
"babel-plugin-transform-runtime": "6.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"coveralls": "2.11.9",
"cross-env": "1.0.7",
"css-loader": "0.23.1",
"deep-equal": "1.0.1",
"eslint": "2.10.2",
"eslint-import-resolver-webpack": "0.2.4",
"eslint-plugin-ava": "2.3.1",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-consistent-return-legacy": "1.0.1",
"eslint-plugin-dollar-sign": "0.0.5",
"eslint-plugin-filenames": "0.2.0",
"eslint-plugin-import": "1.8.1",
"eslint-plugin-no-useless-assign": "1.0.2",
"eslint-plugin-prefer-bind-operator": "0.0.4",
"eslint-plugin-prefer-spread": "1.0.3",
"extricate-loader": "0.0.2",
"file-loader": "0.8.5",
"globby": "4.0.0",
"gulp": "3.9.1",
"gulp-zip": "3.2.0",
"html-loader": "0.4.3",
"inert-entry-webpack-plugin": "1.1.3",
"interpolate-loader": "0.0.6",
"jsdom": "9.0.0",
"json-loader": "0.5.4",
"merge-stream": "1.0.0",
"mustache-loader": "0.3.1",
"node-sass": "3.7.0",
"nyc": "6.4.4",
"postcss-loader": "0.9.1",
"progress-bar-webpack-plugin": "1.6.0",
"prop-loader": "0.0.5",
"rimraf": "2.5.2",
"sass-loader": "3.2.0",
"spawn-loader": "0.1.0",
"url-loader": "0.5.7",
"webpack": "1.13.1",
"yargs": "4.7.1"
}
}