-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.06 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.06 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
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
{
"name": "sammi-websocket-js",
"version": "4.0.2",
"description": "SAMMI Websocket in Javascript",
"author": "Christina K. (christinna9031)",
"license": "MIT",
"repository": "SAMMISolutions/SAMMI-Websocket",
"repoUrl": "https://github.com/SAMMISolutions/SAMMI-Websocket",
"keywords": [
"SAMMI",
"Core",
"websocket",
"node",
"node.js"
],
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "npm-run-all build:*",
"build:web": "rimraf dist && webpack",
"watch": "webpack --watch",
"test": "npm-run-all test:*",
"test:static": "eslint .",
"test:ava": "npm run ava",
"test:types": "dtslint types",
"report": "nyc report --reporter=text-lcov",
"node-coveralls": "npm run report | coveralls",
"ava": "nyc ava --verbose",
"static": "eslint ."
},
"dependencies": {
"debug": "^4.3.3",
"isomorphic-ws": "^4.0.1",
"sha.js": "^2.4.9",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/got": "^9.6.9",
"@types/lodash.deburr": "^4.1.6",
"@types/node": "^10.17.6",
"@types/prettier": "^1.19.0",
"ava": "^3.2.0",
"babili-webpack-plugin": "^0.1.2",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"dtslint": "^2.0.2",
"eslint": "^6.7.2",
"eslint-config-xo-space": "^0.22.0",
"eslint-plugin-ava": "^10.0.1",
"got": "^9.6.0",
"lodash.deburr": "^4.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-xo": "0.16.0",
"typescript": "3.7.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.10"
},
"bugs": {
"url": "https://github.com/SAMMISolutions/SAMMI-Websocket/issues"
},
"homepage": "https://github.com/SAMMISolutions/SAMMI-Websocket#readme",
"eslintConfig": {
"extends": "xo-space/esnext"
},
"ava": {
"files": [
"test/*.spec.js",
"!setup/environment.js"
],
"concurrency": 1,
"timeout": "10s",
"verbose": true
}
}