This repository has been archived by the owner on Mar 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
94 lines (94 loc) · 3.22 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "snoowrap",
"version": "1.23.0",
"license": "MIT",
"description": "A JavaScript wrapper for the reddit API",
"main": "dist/snoowrap.js",
"types": "dist/snoowrap.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"prepare": "npm run compile",
"compile": "npm run type-check && npm run build:babel && npm run build:types && node ./scripts/copyTSTypes.js",
"lint": "eslint --ignore-path .gitignore . --cache",
"test": "npm run lint && npm run test:mocha",
"test:mocha": "npm run compile && mocha --require @babel/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": "npm run build:docs",
"build:docs": "scripts/build_docs.sh",
"build:babel": "babel -q -d dist/ src/",
"build:types": "tsc -p tsconfig.gen-dts.json",
"bundle-size": "npm run build-docs && gzip -c doc/snoowrap-v$(npm info . version).min.js | wc -c | xargs",
"coverage": "istanbul cover _mocha -- --require @babel/register test/snoowrap.spec.js",
"type-check": "tsc -p tsconfig.typecheck.json"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/not-an-aardvark/snoowrap.git"
},
"keywords": [
"reddit",
"api",
"wrapper",
"praw",
"snoo"
],
"author": "not-an-aardvark <[email protected]>",
"bugs": {
"url": "https://github.com/not-an-aardvark/snoowrap/issues"
},
"homepage": "https://github.com/not-an-aardvark/snoowrap",
"dependencies": {
"bluebird": "^3.5.5",
"lodash": "^4.17.15",
"promise-chains": "^0.3.11",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"ws": "^3.3.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-block-scoping": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-parameters": "^7.0.0",
"@babel/plugin-transform-spread": "^7.0.0",
"@babel/plugin-transform-template-literals": "^7.0.0",
"@babel/plugin-transform-typescript": "^7.0.0",
"@babel/register": "^7.5.5",
"@types/request": "^2.48.2",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babelify": "^10.0.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"fs-extra": "^8.1.0",
"ink-docstrap": "^1.2.1",
"istanbul": "^1.0.0-alpha.2",
"jsdoc": "^3.6.3",
"mocha": "^6.0.0",
"moment": "^2.14.1",
"typescript": "^3.5.3",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#1db50c3b169ee4195e1935013d6721628eb5b4bd"
},
"engines": {
"node": ">=4.0.0"
},
"browser": {
"fs": false,
"request-promise": false,
"util": false,
"ws": false
}
}