-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.04 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
{
"name": "scratchcloudapi",
"version": "1.1.2",
"description": "A Helper For Accessing The Scratch Cloud API",
"main": "dist/index.js",
"scripts": {
"ci": "npm i; npm update; rm -rf ./node_modules; rm ./package-lock.json; npm i",
"pretty": "echo 'Prettifying src'; npx prettier --write ./src/** --arrow-parens avoid --print-width 1000000 --tab-width 4 --trailing-comma none --use-tabs true --vue-indent-script-and-style true; echo '\nPrettifying Tests'; npx prettier --write ./test/**/* --arrow-parens avoid --print-width 1000000 --tab-width 4 --trailing-comma none --use-tabs true --vue-indent-script-and-style true; echo ''",
"test": "npm run build; echo 'Running Test\n\n'; npm run quickTest",
"quickTest": "node --inspect test/index.test.js",
"build": "npm run pretty; echo 'Compiling TypeScript\n'; rm -rf ./dist; npx tsc",
"ready": "npm run ci; npm run build;"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.7.16",
"@types/ws": "^8.5.3",
"typescript": "^4.8.3"
},
"dependencies": {
"ws": "^8.8.1"
}
}