-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
{
"name": "audioparam-getvalueattime",
"version": "0.0.0-development",
"description": "This code monkey patches AudioParams with a method to get values at any time",
"main": "dist/audioparam-getvalueattime.min.js",
"scripts": {
"build": "rollup -c",
"build:watch": "npm run build -- --watch",
"lint": "eslint src --fix",
"stage-after-lint": "git add src",
"commit": "git-cz",
"commit:again": "git-cz --retry",
"semantic-release": "semantic-release",
"dist:clean": "rimraf dist || true",
"dist:stage": "git add dist --force"
},
"pre-commit": [
"lint",
"stage-after-lint",
"dist:clean",
"build",
"dist:stage"
],
"repository": {
"type": "git",
"url": "https://github.com/the-monochord/AudioParam.getValueAtTime.git"
},
"author": "Lajos Meszaros <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/the-monochord/AudioParam.getValueAtTime/issues"
},
"homepage": "https://github.com/the-monochord/AudioParam.getValueAtTime#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-standard": "^4.0.1",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"prettier-config-standard": "^1.0.1",
"rimraf": "^3.0.0",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-ramda": "^1.0.5",
"rollup-plugin-terser": "^5.1.2",
"semantic-release": "^15.13.24"
},
"dependencies": {
"pseudo-audio-param": "^1.3.1",
"ramda": "^0.26.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}