-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 928 Bytes
/
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
{
"name": "nbs-viewer",
"version": "0.0.1",
"description": "Reads Note Block Song (.nbs) files",
"main": "dist/index.js",
"author": "DGigsTV",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dgigstv/nbs-viewer"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"jest": "^28.0.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"scripts": {
"clean": "npx rimraf dist/",
"build": "npx tsc",
"lint": "npx eslint src/**/*",
"test": "jest --config jest.config.js"
},
"files": [
"dist/**/*"
]
}