This repository was archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 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
{
"name": "@aikuma/webaudio",
"version": "0.4.1",
"description": "Aikuma Microphone and WebPlayer Library",
"author": "Mat Bettinson (mat.bettinson@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lingomat/aikumic/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Lingomat/aikumic.git"
},
"files": [
"dist/src"
],
"testGlob": "./dist/test/**/*.spec.js?(x)",
"homepage": "https://github.com/Lingomat/aikumic#readme",
"keywords": [
"microphone",
"web audio"
],
"main": "dist/src/index.js",
"browser": "dist/src/index.js",
"scripts": {
"build": "tsc -d",
"bundle": "webpack --progress",
"pretest": "rimraf dist && yarn build && yarn bundle",
"reset": "rimraf node_modules dist && yarn install && yarn test",
"test": "yarn test:node && yarn test:browser",
"test:node": "mocha --require dist/test/setup.js --require source-map-support/register --reporter mocha-env-reporter dist/test/*.spec.js",
"test:browser": "karma start --single-run",
"start": "rimraf dist && yarn build && concurrently --kill-others --success first \"yarn build -- -w\" \"webpack-dev-server --no-info\""
},
"devDependencies": {
"@types/chai": "~4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "~2.2.41",
"@types/sinon": "~4.1.0",
"@types/sinon-chai": "~2.7.28",
"chai": "~4.1.2",
"chai-as-promised": "^7.1.1",
"chai-subset": "~1.6.0",
"concurrently": "~3.5.0",
"glob": "~7.1.2",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-env-reporter": "~1.0.13",
"karma-firefox-launcher": "~1.1.0",
"karma-mocha": "~1.3.0",
"mocha": "~4.1.0",
"mocha-env-reporter": "~3.0.0",
"mocha-loader": "~1.1.1",
"rimraf": "~2.6.1",
"sinon": "~4.3.0",
"sinon-chai": "~2.14.0",
"source-map-support": "~0.5.0",
"tslib": "~1.9.0",
"typescript": "~2.6.2",
"webpack": "~3.11.0",
"webpack-dev-server": "~2.11.1"
},
"dependencies": {
"rxjs": "~6.3.3",
"rxjs-compat": "^6.5.2"
},
"peerDependencies": {
"tslib": "~1.9.0"
}
}