diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 00000000..20afb425 --- /dev/null +++ b/package.json | |||
@@ -0,0 +1,103 @@ | |||
1 | { | ||
2 | "name": "wallabag", | ||
3 | "version": "2.1.0", | ||
4 | "description": "wallabag is a self hostable application for saving web pages", | ||
5 | "main": "index.js", | ||
6 | "private": true, | ||
7 | "directories": { | ||
8 | "doc": "docs" | ||
9 | }, | ||
10 | "engines": { | ||
11 | "node": ">0.12" | ||
12 | }, | ||
13 | "browser": { | ||
14 | "jquery": "./node_modules/jquery/dist/jquery.js", | ||
15 | "jQuery": "./node_modules/jquery/dist/jquery.js", | ||
16 | "materialize": "./node_modules/materialize-css/bin/materialize.js" | ||
17 | }, | ||
18 | "browserify-shim": { | ||
19 | "jquery": { | ||
20 | "exports": "$" | ||
21 | }, | ||
22 | "materialize": "materialize", | ||
23 | "jquery-ui": { | ||
24 | "depends": "jquery", | ||
25 | "exports": null | ||
26 | } | ||
27 | }, | ||
28 | "browserify": { | ||
29 | "transform": [ | ||
30 | "browserify-shim" | ||
31 | ] | ||
32 | }, | ||
33 | "repository": { | ||
34 | "type": "git", | ||
35 | "url": "https://github.com/wallabag/wallabag" | ||
36 | }, | ||
37 | "contributors": [ | ||
38 | { | ||
39 | "name": "Nicolas Lœuillet", | ||
40 | "email": "nicolas@loeuillet.org", | ||
41 | "homepage": "http://www.cdetc.fr", | ||
42 | "role": "Developer" | ||
43 | }, | ||
44 | { | ||
45 | "name": "Thomas Citharel", | ||
46 | "homepage": "http://tcit.fr", | ||
47 | "role": "Developer" | ||
48 | }, | ||
49 | { | ||
50 | "name": "Jérémy Benoist", | ||
51 | "homepage": "http://www.j0k3r.net", | ||
52 | "role": "Developer" | ||
53 | } | ||
54 | ], | ||
55 | "license": "MIT", | ||
56 | "bugs": { | ||
57 | "url": "https://github.com/wallabag/wallabag/issues" | ||
58 | }, | ||
59 | "devDependencies": { | ||
60 | "annotator": "git://github.com/wallabag/annotator.git#0f076c7d371ed25eb0793346f46982d90f2c4c85", | ||
61 | "autoprefixer": "^6.3.6", | ||
62 | "babel-eslint": "^6.1.2", | ||
63 | "babel-preset-es2015": "^6.14.0", | ||
64 | "babelify": "^7.3.0", | ||
65 | "browserify": "^13.0.0", | ||
66 | "browserify-shim": "^3.8.12", | ||
67 | "cssnano": "^3.5.2", | ||
68 | "es6-promise": "^3.2.1", | ||
69 | "eslint": "^3.7.1", | ||
70 | "eslint-config-airbnb-base": "^8.0.0", | ||
71 | "eslint-plugin-import": "^1.16.0", | ||
72 | "grunt": ">=0.4.0", | ||
73 | "grunt-browserify": "^5.0.0", | ||
74 | "grunt-cli": "^1.2.0", | ||
75 | "grunt-contrib-clean": "^1.0.0", | ||
76 | "grunt-contrib-concat": "^1.0.0", | ||
77 | "grunt-contrib-copy": "^1.0.0", | ||
78 | "grunt-contrib-symlink": "^1.0.0", | ||
79 | "grunt-contrib-uglify": "^1.0.0", | ||
80 | "grunt-eslint": "^19.0.0", | ||
81 | "grunt-postcss": "^0.8.0", | ||
82 | "grunt-stylelint": "^0.6.0", | ||
83 | "hammerjs": "^2.0.6", | ||
84 | "icomoon-free-npm": "0.0.0", | ||
85 | "jquery": "^2.2.4", | ||
86 | "jquery-ui-browserify": "^1.11.0-pre-seelio", | ||
87 | "jquery.cookie": "^1.4.1", | ||
88 | "jquery.tinydot": "^0.2.1", | ||
89 | "load-grunt-tasks": "^3.4.1", | ||
90 | "material-design-icons-iconfont": "^3.0.0", | ||
91 | "materialize-css": "0.97.5", | ||
92 | "npm": "^3.8.3", | ||
93 | "pickadate": "^3.5.6", | ||
94 | "pixrem": "^3.0.0", | ||
95 | "postcss-cssnext": "^2.5.1", | ||
96 | "prismjs": "^1.4.1", | ||
97 | "ptsans-npm-webfont": "0.0.4", | ||
98 | "roboto-fontface": "^0.6.0", | ||
99 | "stylelint": "^7.3.1", | ||
100 | "stylelint-config-standard": "^13.0.2", | ||
101 | "through": "^2.3.8" | ||
102 | } | ||
103 | } | ||