-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.41 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fifoer",
"version": "0.0.0",
"description": "An implementation of queues in TypeScript for nodejs and browser",
"main": "dist/index.js",
"module": "dist/index.es.js",
"homepage": "https://github.com/qafoori/queue",
"files": [
"dist",
"README.md"
],
"license": "MIT",
"private": false,
"repository": {
"url": "git+https://github.com/qafoori/queue.git",
"type": "git"
},
"author": {
"name": "qafoori",
"url": "https://github.com/qafoori"
},
"keywords": [
"javascript",
"typescript",
"queue"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:ts"
]
},
"scripts": {
"build": "yarn clean && rollup -c --bundleConfigAsCjs && rimraf ./dist/__tests__",
"publish": "npm publish --access public",
"clean": "rimraf dist tsconfig.tsbuildinfo .rollup.cache",
"lint:ts": "eslint ./lib --ext .ts,.tsx --fix --quiet",
"lint:staged": "lint-staged",
"prettify:check": "npx prettier --check .",
"prettify:write": "npx prettier --write .",
"prepare": "husky install",
"test": "jest --silent=false",
"test:watch": "jest --watch --silent=false",
"test:ci": "jest --ci"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@rollup/pluginutils": "^5.0.1",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-loader": "^8.2.5",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^3.3.2",
"prop-types": "^15.8.1",
"rimraf": "^3.0.2",
"rollup": "^3.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"lifoer": "^0.0.1"
}
}