-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "arkfbp",
"version": "0.0.3-rc",
"description": "Javascript implementation of ArkFBP Framework, with NodeJS & Browser supported",
"author": "Rock Lee <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/arkfbp/arkfbp-javascript.git"
},
"bugs": {
"url": "https://github.com/arkfbp/arkfbp-javascript/issues"
},
"homepage": "https://github.com/arkfbp/arkfbp-javascript",
"license": "LGPL",
"keywords": [
"arkfbp"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"watch": "tsc -w -p .",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"prepublish": "tsc"
},
"devDependencies": {
"@types/cookie": "^0.3.3",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/node": "^10.17.13",
"gts": "^1.1.2",
"typescript": "^3.7.4"
},
"dependencies": {
"axios": "^0.19.0",
"chalk": "^4.1.0",
"config-yml": "^0.10.3",
"cookie": "^0.4.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"loadash": "^1.0.0",
"sqlite3": "^4.1.1"
}
}