-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "plentimon-hand",
"version": "0.0.2",
"description": "an orchestrator for plentimon",
"main": "libs/plentimon.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:rollup && build:types && npm run build:js",
"build:rollup": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autochthonia/plentimon-hand.git"
},
"keywords": [
"plentimon",
"exalted3",
"typescript",
"discord.js",
"babel"
],
"author": "autochthonia",
"license": "ISC",
"bugs": {
"url": "https://github.com/autochthonia/plentimon-hand/issues"
},
"homepage": "https://github.com/autochthonia/plentimon-hand#readme",
"devDependencies": {
"@aws-sdk/types": "0.1.0-preview.1",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.126",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"regenerator-runtime": "^0.13.2",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"typescript": "^3.4.5"
},
"dependencies": {
"@aws-sdk/client-lambda-node": "0.1.0-preview.2",
"discord.js": "^11.5.0",
"lightship": "^3.0.1"
}
}