-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.73 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.73 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
{
"title": "Tweeter Server",
"webpackConfigJaid": "cli",
"version": "3.5.0",
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"dependencies": {
"@absolunet/fsp": "^1.6.2",
"body-parser": "^1.19.0",
"data-urls": "^2.0.0",
"ensure-array": "^1.0.0",
"fast-koa-router": "^1.2.0",
"filesize": "^6.1.0",
"flatted": "^2.0.2",
"flatten-multiline": "^1.0.0",
"globby": "^11.0.0",
"got": "^10.7.0",
"handlebars": "^4.7.6",
"has-content": "^1.1.1",
"jaid-core": "^8.0.3",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"lodash": "^4.17.15",
"mime-types": "^2.1.26",
"oauth-1.0a": "^2.2.6",
"pify": "^5.0.0",
"query-string": "^6.12.1",
"shortid": "^2.2.15",
"tempfile": "^3.0.0",
"twit": "^2.2.11",
"yargs": "^15.3.1",
"zahl": "^2.0.6"
},
"devDependencies": {
"acorn": "^7.1.1",
"babel-jest": "^25.3.0",
"babel-preset-jaid": "^8.0.0",
"browserslist-config-jaid-node": "^2.2.2",
"eslint": "^6.8.0",
"eslint-config-jaid": "^1.49.0",
"jest": "^25.3.0",
"rimraf": "^3.0.2",
"webpack": "^4.42.1",
"webpack-config-jaid": "^11.8.0"
},
"scripts": {
"clean": "rimraf dist/",
"start": "npm run build:dev && node --inspect=9229 $(npx find-by-extension-cli js --fullPath --cwd dist/package/development)",
"babel:prod": "rimraf dist/transpiled/production && NODE_ENV=production babel --out-dir dist/transpiled/production --source-maps true src",
"babel:dev": "rimraf dist/transpiled/development && NODE_ENV=development babel --out-dir dist/transpiled/development src",
"babel:test": "rimraf dist/transpiled/test && NODE_ENV=test babel --out-dir dist/transpiled/test src",
"build:prod": "NODE_ENV=production webpack",
"build:dev": "NODE_ENV=development webpack",
"test": "npm run build:prod && NODE_ENV=production MAIN=$(npx find-by-extension-cli js --fullPath --cwd dist/package/production) jest --runInBand --passWithNoTests",
"test:coverage": "npm run test:dev -- --coverage --json --outputFile=dist/jest/stats.json",
"test:dev": "npm run build:dev && NODE_ENV=test MAIN=$(npx find-by-extension-cli js --fullPath --cwd dist/package/development) jest --runInBand --passWithNoTests",
"test:debug": "npm run start",
"prepareActionJest": "npm run build:prod"
},
"name": "tweeter-server",
"description": "Sends tweets.",
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/tweeter-server"
},
"homepage": "https://github.com/Jaid/tweeter-server",
"keywords": [
"backend",
"cli",
"server",
"tool",
"tweeter",
"tweets",
"twitter",
"twitter-api",
"twitter-app",
"twitter-bot"
]
}