forked from chrisguttandin/standardized-audio-context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.83 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"author": "Christoph Guttandin",
"bugs": {
"url": "https://github.com/chrisguttandin/standardized-audio-context/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"contributors": [
{
"email": "[email protected]",
"name": "Thijs Triemstra"
}
],
"dependencies": {
"@babel/runtime": "^7.4.5",
"tslib": "^1.10.0"
},
"description": "A cross-browser implementation of the AudioContext which aims to closely follow the standard.",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^8.0.0",
"chai": "^4.2.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-holy-grail": "^37.0.1",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-karma": "^3.0.2",
"grunt-modernizr": "^2.0.1",
"grunt-replace": "^1.0.1",
"grunt-sh": "^0.2.0",
"grunt-tslint": "^5.0.2",
"gruntify-eslint": "^5.0.0",
"husky": "^2.4.1",
"karma": "^4.1.0",
"karma-browserstack-launcher": "^1.5.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-opera-launcher": "^1.0.0",
"karma-parallel": "^0.3.1",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^2.0.2",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^4.0.2",
"load-grunt-config": "^1.0.2",
"mocha": "^6.1.4",
"puppeteer": "^1.17.0",
"rollup": "^1.15.3",
"rollup-plugin-babel": "^4.3.2",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-loader": "^6.0.2",
"tsconfig-holy-grail": "^10.0.4",
"tslint": "^5.17.0",
"tslint-config-holy-grail": "^44.0.2",
"typescript": "^3.5.2",
"webpack": "^4.34.0"
},
"files": [
"build/es2018/",
"build/es5/",
"src/"
],
"homepage": "https://github.com/chrisguttandin/standardized-audio-context",
"husky": {
"hooks": {
"commit-msg": "commitlint --edit --extends @commitlint/config-angular",
"pre-commit": "grunt lint"
}
},
"keywords": [
"AudioWorklet",
"Polyfill",
"Web Audio API",
"audio",
"browser"
],
"license": "MIT",
"main": "build/es5/bundle.js",
"module": "build/es2018/module.js",
"name": "standardized-audio-context",
"repository": {
"type": "git",
"url": "https://github.com/chrisguttandin/standardized-audio-context.git"
},
"scripts": {
"prepublishOnly": "grunt build",
"test": "grunt lint && grunt test"
},
"types": "build/es2018/module.d.ts",
"version": "20.1.6"
}