-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
45
46
47
{
"name": "@nuvolo/sn-socket",
"version": "1.0.2",
"description": "A Websocket wrapper for ServiceNow",
"main": "dist/sn-socket.min.js",
"scripts": {
"build": "npx rollup --config",
"prepare": "npm run build",
"test": "echo \"Anything interesting here relies on ServiceNow code, and I didn't mock it yet... \""
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"ServiceNow",
"WebSocket"
],
"author": "Nick Rakochy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuvolo/sn-socket.git"
},
"bugs": {
"url": "https://github.com/nuvolo/sn-socket/issues"
},
"files": [
"dist/sn-socket.min.js"
],
"unpkg": "dist/sn-socket.min.js",
"homepage": "https://github.com/nuvolo/sn-socket#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@types/jest": "^26.0.19",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"np": "^7.0.0",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.3"
}
}