-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "ng-modulo",
"version": "0.0.2",
"description": "Lightweight wrapper for the Web Audio API that lets you pass some audio and get its waveform/frequency data in return",
"keywords": [
"WebAudioAPI",
"TypeScript",
"Angular",
"waveform"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"installPeerDependencies": "npm install --no-save tslint typescript rxjs @types/webaudioapi",
"prepublish": "npm run installPeerDependencies && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/IxquitilisSaid/ng-modulo.git"
},
"author": "Jaime Oliveira <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/IxquitilisSaid/ng-modulo/issues"
},
"homepage": "https://github.com/IxquitilisSaid/ng-modulo",
"peerDependencies": {
"tslint": "5.*",
"typescript": "^3.0.0",
"rxjs": "^5.0.0 || ^6.0.0",
"@types/webaudioapi": "0.0.27"
},
"devDependencies": {
"cpy-cli": "^3.0.0",
"replace-in-file": "^5.0.2",
"rxjs": "^6.5.3",
"standard-version": "^8.0.1",
"tslint": "^5.9.1",
"@cartant/tslint-config": "^2.0.0",
"@cartant/tslint-config-etc": "^2.0.0",
"@types/chai": "^4.0.0",
"@types/mocha": "^7.0.0",
"@types/node": "^13.0.0",
"@types/resolve": "^1.14.0",
"@types/semver": "^7.0.0",
"@types/webaudioapi": "0.0.27",
"chai": "^4.0.0",
"husky": "^4.0.0",
"lint-staged": "^9.0.0",
"mocha": "^7.0.0",
"prettier": "~1.19.0",
"rimraf": "^3.0.0",
"tslint-etc": "^1.5.1",
"typescript": "~3.8.2"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^4.0.0",
"decamelize": "^3.0.0",
"resolve": "^1.4.0",
"semver": "^7.0.0",
"tslib": "^1.8.0",
"tsutils": "^3.0.0",
"tsutils-etc": "^1.1.0"
}
}