forked from tomayac/pageviews.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.09 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
{
"name": "pageviews",
"version": "1.0.6",
"description": "A lightweight JavaScript client library for the Wikimedia Pageviews API for Wikipedia and various of its sister projects for Node.js and the browser.",
"main": "pageviews.js",
"scripts": {
"test": "node tests/tests.js",
"lint": "jshint pageviews.js tests/tests.js; jscs --preset=google pageviews.js tests/tests.js",
"build": "uglifyjs pageviews.js --compress sequences,properties,dead_code,conditionals,comparisons,evaluate,booleans,loops,unused,if_return,join_vars,warnings --mangle --comments --output pageviews.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tomayac/pageviews.js.git"
},
"keywords": [
"pageview",
"pageviews",
"wikipedia",
"wikimedia",
"api"
],
"author": "Thomas Steiner <[email protected]> (http://blog.tomayac.com/)",
"bugs": {
"url": "https://github.com/tomayac/pageviews.js/issues"
},
"license": "Apache-2.0",
"dependencies": {
"request": "^2.67.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}