forked from mixer/interactive-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.84 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
{
"name": "@mixer/interactive-node",
"version": "3.0.1",
"description": "A NodeJS and Browser compatible client for mixer.com's interactive 2 Protocol",
"contributors": [
{
"name": "Richard Fox",
"email": "[email protected]"
},
{
"name": "Connor Peet",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"fmt:javascript": "prettier --single-quote --trailing-comma es5 --print-width 100 --write \"*.js\"",
"fmt:typescript": "prettier --single-quote --trailing-comma all --print-width 100 --parser typescript --write \"src/**/*.ts\"",
"fmt": "npm run fmt:javascript && npm run fmt:typescript",
"build:ts": "rimraf lib dist && tsc",
"build:webpack": "rimraf dist && webpack && webpack --config webpack.config.min.js",
"build:examples": "rimraf examples/*.js && cd examples && tsc",
"build": "npm run build:ts && npm run build:webpack && npm run build:examples",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha --compilers ts:ts-node/register \"src/**/*.spec.ts\" --exit",
"prepublishOnly": "npm run build",
"postpublish": "npm run docs:publish",
"lint": "tslint -c tslint.json --project tsconfig.json \"src/**/*.ts\" \"test/**/*.ts\"",
"docs:build": "rimraf docs && typedoc --exclude \"{*.spec.ts,**/node_modules/**}\" --out docs/ --mode file --excludeNotExported --excludePrivate --excludeExternals --tsconfig tsconfig.json ./src && node doc-postprocess.js",
"docs:publish": "npm run docs:build && gh-pages -d docs -s **"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixer/interactive-node.git"
},
"keywords": [
"Interactive",
"Mixer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mixer/interactive-node/issues"
},
"homepage": "https://github.com/mixer/interactive-node#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.30",
"@types/deepmerge": "^1.3.3",
"@types/faker": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.113",
"@types/node-fetch": "^1.6.9",
"@types/sinon": "^2.3.7",
"@types/sinon-chai": "^2.7.33",
"@types/ws": "0.0.38",
"awesome-typescript-loader": "^3.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"faker": "^4.1.0",
"fetch-cookie": "^0.4.1",
"gh-pages": "^1.2.0",
"mocha": "^5.2.0",
"node-fetch": "^1.7.3",
"nodemon": "^1.17.5",
"prettier": "^1.13.6",
"rimraf": "^2.6.2",
"sinon": "^2.2.0",
"sinon-chai": "^2.14.0",
"ts-node": "^3.3.0",
"tslint": "^4.3.1",
"tslint-microsoft-contrib": "4.0.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^2.13.1",
"ws": "^1.1.5"
},
"dependencies": {
"deepmerge": "^1.5.2"
}
}