-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "@nersent/queue",
"version": "1.0.0",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"repository": "https://github.com/nersent/queue.git",
"homepage": "https://nersent.com",
"author": "Mikołaj Palkiewicz <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "tsc-watch -p ./tsconfig.examples.json --onSuccess \"node build/examples/index.js\"",
"clean": "rimraf ./build",
"build": "npm run clean && tsc -p ./tsconfig.lib.json",
"lint": "eslint ./",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"axios": "^0.27.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"progress": "^2.0.3",
"rimraf": "^3.0.2",
"tsc-watch": "^5.0.3",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}