-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "@perion/perion",
"version": "0.1.6",
"description": "A library that contains all the utilities for creating a MapleStory server emulator",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jonnylin13/perion"
},
"scripts": {
"test": "nyc --check-coverage=true --reporter=text mocha packages/**/test/*.test.js test/*.js",
"lint": "eslint packages/**/*.js --fix",
"doc": "rm -rf docs && ./node_modules/.bin/jsdoc -r index.js ./packages/**/index.js ./packages/**/src/*.js ./README.md -c jsdoc.json -d docs",
"deps": "node scripts/deps.js",
"lcov": "nyc --reporter=lcov mocha packages/**/*.test.js test/*js"
},
"keywords": [
"maplestory",
"nodejs",
"node",
"javascript",
"private",
"server",
"private-server",
"mmorpg"
],
"author": "jonnylin13",
"license": "Apache-2.0",
"devDependencies": {
"docdash": "^1.2.0",
"eslint": "^7.22.0",
"eslint-config-google": "^0.14.0",
"jsdoc": "^3.6.6",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"util.promisify": "^1.1.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"rules": {},
"parserOptions": {
"sourceType": "module"
},
"env": {
"es2015": true,
"node": true
}
},
"dependencies": {
"@perion/calc": "0.0.2",
"@perion/core": "0.0.5",
"@perion/crypto": "1.0.2",
"@perion/net": "0.0.6",
"@perion/script": "0.0.2",
"@perion/wz": "0.0.1"
},
"bugs": {
"url": "https://github.com/jonnylin13/perion/issues",
"email": "[email protected]"
}
}