diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 00000000..39a10e9c --- /dev/null +++ b/package.json | |||
@@ -0,0 +1,89 @@ | |||
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 | "dependencies": { | ||
11 | "annotator": "git://github.com/wallabag/annotator.git#0f076c7d371ed25eb0793346f46982d90f2c4c85", | ||
12 | "autoprefixer": "^6.3.6", | ||
13 | "bower": "^1.7.7", | ||
14 | "browserify": "^13.0.0", | ||
15 | "browserify-shim": "^3.8.12", | ||
16 | "cssnano": "^3.5.2", | ||
17 | "es6-promise": "^3.2.1", | ||
18 | "grunt": ">=0.4.0", | ||
19 | "grunt-browserify": "^5.0.0", | ||
20 | "grunt-cli": "^1.2.0", | ||
21 | "grunt-contrib-clean": "^1.0.0", | ||
22 | "grunt-contrib-concat": "^1.0.0", | ||
23 | "grunt-contrib-copy": "^1.0.0", | ||
24 | "grunt-contrib-symlink": "^1.0.0", | ||
25 | "grunt-contrib-uglify": "^1.0.0", | ||
26 | "grunt-postcss": "^0.8.0", | ||
27 | "hammerjs": "^2.0.6", | ||
28 | "jquery": "^2.2.1", | ||
29 | "jquery-ui": "^1.10.5", | ||
30 | "jquery.cookie": "^1.4.1", | ||
31 | "jquery.tinydot": "^0.2.1", | ||
32 | "load-grunt-tasks": "^3.4.1", | ||
33 | "materialize-css": "0.97.5", | ||
34 | "npm": "^3.8.3", | ||
35 | "pickadate": "^3.5.6", | ||
36 | "pixrem": "^3.0.0", | ||
37 | "postcss-cssnext": "^2.5.1", | ||
38 | "prismjs": "^1.4.1", | ||
39 | "through": "^2.3.8" | ||
40 | }, | ||
41 | "engines": { | ||
42 | "node": ">0.12" | ||
43 | }, | ||
44 | "browser": { | ||
45 | "jquery": "./node_modules/jquery/dist/jquery.js", | ||
46 | "jQuery": "./node_modules/jquery/dist/jquery.js", | ||
47 | "materialize": "./node_modules/materialize-css/bin/materialize.js" | ||
48 | }, | ||
49 | "browserify-shim": { | ||
50 | "jquery": "$", | ||
51 | "jQuery": "jQuery", | ||
52 | "materialize": "materialize" | ||
53 | }, | ||
54 | "browserify": { | ||
55 | "transform": [ | ||
56 | "browserify-shim" | ||
57 | ] | ||
58 | }, | ||
59 | "repository": { | ||
60 | "type": "git", | ||
61 | "url": "https://github.com/wallabag/wallabag" | ||
62 | }, | ||
63 | "contributors": [ | ||
64 | { | ||
65 | "name": "Nicolas Lœuillet", | ||
66 | "email": "nicolas@loeuillet.org", | ||
67 | "homepage": "http://www.cdetc.fr", | ||
68 | "role": "Developer" | ||
69 | }, | ||
70 | { | ||
71 | "name": "Thomas Citharel", | ||
72 | "homepage": "http://tcit.fr", | ||
73 | "role": "Developer" | ||
74 | }, | ||
75 | { | ||
76 | "name": "Jérémy Benoist", | ||
77 | "homepage": "http://www.j0k3r.net", | ||
78 | "role": "Developer" | ||
79 | } | ||
80 | ], | ||
81 | "license": "MIT", | ||
82 | "bugs": { | ||
83 | "url": "https://github.com/wallabag/wallabag/issues" | ||
84 | }, | ||
85 | "devDependencies": { | ||
86 | "eslint": "^2.11.1", | ||
87 | "eslint-config-airbnb": "^9.0.1" | ||
88 | } | ||
89 | } | ||