This repository has been archived by the owner on Jul 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.17 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
{
"name": "@mixer/cdk-std",
"version": "0.3.0",
"description": "Standard library for Mixer Interactive controls",
"main": "dist/bundle.min.js",
"typings": "dist/bundle.d.ts",
"scripts": {
"test": "npm-run-all --parallel --silent test:lint fmt test:unit",
"test:unit": "karma start test/karma.conf.js --single-run",
"test:lint": "tslint -t verbose --project tsconfig.json \"{src,test}/**/*.ts\"",
"test:watch": "karma start test/karma.conf.js --no-single-run",
"fmt": "prettier --single-quote --trailing-comma all --parser typescript --print-width 100 --write \"{src,test}/**/*.ts\" && npm run -s test:lint -- --fix",
"build": "npm-run-all --parallel --silent build:ts build:bundle",
"build:ts": "tsc",
"build:bundle": "webpack",
"build:doc": "rimraf dist && tsc -m es2015 -t es6 --moduleResolution node && esdoc -c esdoc.json",
"publish:azure": "npm run test && node bin/upload-to-azure.js",
"prepare": "npm run -s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixer/cdk-std.git"
},
"keywords": [
"mixer",
"cdk",
"interactive",
"controls",
"custom"
],
"author": "Connor Peet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixer/cdk-std/issues"
},
"homepage": "https://github.com/mixer/cdk-std#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^8.9.4",
"@types/sinon": "^4.1.3",
"awesome-typescript-loader": "^3.4.1",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"karma": "^1.7.1",
"karma-browserstack-launcher": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^2.0.9",
"mocha": "^4.1.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"sinon": "^4.3.0",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.3",
"typedoc": "^0.8.0",
"typescript": "^2.7.2",
"webpack": "^3.11.0"
},
"dependencies": {
"eventemitter3": "^2.0.3",
"rxjs": "^5.5.8"
}
}