forked from not-an-aardvark/snoowrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.66 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.66 KB
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
{
"name": "snoowrap",
"version": "1.16.0",
"license": "MIT",
"description": "A JavaScript wrapper for the reddit API",
"main": "dist/snoowrap.js",
"scripts": {
"compile": "babel -q -d dist/ src/",
"lint": "eslint --ignore-path .gitignore . --cache",
"test": "npm run lint && npm run test:mocha",
"test:mocha": "npm run compile && mocha --compilers js:babel-core/register test/snoowrap.spec.js",
"test:browser": "npm run compile && browserify --im test/snoowrap.spec.js -o test/_browser.spec.js -t [ babelify ] && open test/run-tests.html",
"smoketest": "npm run test -- -g 'smoketest'",
"build-docs": "scripts/build_docs.sh",
"bundle-size": "npm run build-docs && gzip -c doc/snoowrap-v$(npm info . version).min.js | wc -c | xargs",
"coverage": "istanbul cover _mocha -- --compilers js:babel-core/register test/snoowrap.spec.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/not-an-aardvark/snoowrap.git"
},
"keywords": [
"reddit",
"api",
"wrapper",
"praw",
"snoo"
],
"author": "not-an-aardvark <not-an-aardvark@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/not-an-aardvark/snoowrap/issues"
},
"homepage": "https://github.com/not-an-aardvark/snoowrap",
"dependencies": {
"bluebird": "^3.4.1",
"lodash": "^4.5.1",
"promise-chains": "^0.3.11",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"ws": "^3.3.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-lodash": "^3.2.6",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.14.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-plugin-transform-es2015-parameters": "^6.11.4",
"babel-plugin-transform-es2015-spread": "^6.8.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.9.1",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-promise": "^3.3.0",
"ink-docstrap": "^1.2.1",
"istanbul": "^1.0.0-alpha.2",
"jsdoc": "^3.4.0",
"mocha": "^3.0.2",
"moment": "^2.14.1",
"uglify-js": "git://github.com/mishoo/UglifyJS2/#1db50c3b169ee4195e1935013d6721628eb5b4bd"
},
"engines": {
"node": ">=4.0.0"
},
"browser": {
"fs": false,
"request-promise": false,
"util": false,
"ws": false
}
}