-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.44 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.44 KB
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
{
"name": "@queue-it/queue-token",
"version": "1.0.2",
"description": "Ensures that end users cannot enter the queue without a valid token and to be a container which can carry sensitive user information from integrating system into the queue",
"repository": "https://github.com/queueit/QueueToken.V1.JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint -c .eslintrc.json **/*.ts",
"build": "tsc && npm run browserify",
"browserify": "browserify . -s QueueToken -o dist/browserified.js",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"prepare": "husky install .husky & npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"chai-string": "^1.5.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-ie11": "^1.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.9.1",
"husky": "^7.0.4",
"lint-staged": "^10.5.4",
"mocha": "^9.1.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"lint-staged": {
"src/**/*.ts": [
"eslint -c .eslintrc.json --fix"
]
}
}