-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
29 lines (29 loc) · 954 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
{
"name": "queueit-knownuser",
"version": "3.7.12",
"description": "SDK to integrate Queue-it into a javascript based server side application.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/queueit/KnownUser.V3.Javascript",
"scripts": {
"prepare": "npm run build",
"clean": "npm run clean:dist",
"clean:dist": "rm -rf ./dist/*",
"build": "npm run clean && tsc && npm run browserify",
"browserify": "browserify . -s QueueIT.KnownUserV3.SDK -o dist/queueit.knownuserv3.browserify.js",
"test": "mocha --recursive",
"buildtest": "npm run build && npm run test",
"test:watch": "nodemon --watch test -x \"npm run test\""
},
"keywords": [],
"author": "QueueIT",
"license": "MIT",
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.4",
"chai-string": "^1.5.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.7.4"
}
}