This repository has been archived by the owner on May 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "l2nbt",
"version": "0.1.3",
"description": "A lgou2w Minecraft NBT library for Javascript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "npm run clean:build && npm run clean:coverage",
"clean:build": "rimraf lib dist",
"clean:coverage": "rimraf coverage",
"build": "npm run build:prod",
"build:dev": "npm run clean:build && tsc && cross-env NODE_ENV=development webpack",
"build:prod": "npm run clean:build && tsc && cross-env NODE_ENV=production webpack",
"test": "npm run test:browser && npm run test:node",
"test:browser": "rimraf coverage && cross-env NODE_ENV=development karma start karma.config.js",
"test:node": "cross-env NODE_ENV=development ts-mocha -p tsconfig.json test/**/*.spec.ts --exit",
"lint": "eslint --ext .js,.ts,.tsx --ignore-path .gitignore .",
"prepublishOnly": "npm test && npm run build"
},
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lgou2w/l2nbt.js.git"
},
"author": "lgou2w <lgou2w@hotmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lgou2w/l2nbt.js/issues"
},
"homepage": "https://github.com/lgou2w/l2nbt.js",
"keywords": [
"minecraft",
"minecraft-nbt",
"named-binary-tag",
"nbt",
"nbt-writer",
"nbt-reader",
"nbt-base64",
"nbt-json"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"karma": "^5.0.5",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.0.2",
"mocha": "^7.1.2",
"puppeteer": "^3.0.4",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^3.0.1",
"ts-loader": "^7.0.3",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {}
}