-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "fetch-reddit",
"version": "0.1.0",
"description": "Easily fetch links from Reddit subs and threads",
"main": "lib/index.js",
"scripts": {
"lint": "standard",
"test": "mocha test --compilers js:babel-core/register",
"build": "babel src -d lib",
"clean": "rimraf lib",
"preversion": "npm run lint && npm run test",
"version": "auto-changelog --package -t compact; git add CHANGELOG.md",
"prepublish": "npm run build",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "https://github.com/CookPete/fetch-reddit.git"
},
"keywords": [
"reddit",
"fetch",
"api",
"links"
],
"author": "Pete Cook <pete@cookpete.com> (http://github.com/cookpete)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CookPete/fetch-reddit/issues"
},
"homepage": "https://github.com/CookPete/fetch-reddit",
"devDependencies": {
"auto-changelog": "^0.3.0",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.20",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.2.0",
"mocha": "^2.2.5",
"rimraf": "^2.4.3",
"standard": "^5.3.1"
},
"dependencies": {
"isomorphic-fetch": "^2.1.1",
"query-string": "^3.0.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"standard": {
"global": [
"fetch"
]
}
}