forked from Tonejs/Tone.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.62 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
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "tone",
"version": "14.8.0",
"description": "A Web Audio framework for making interactive music in the browser.",
"browser": "build/Tone.js",
"main": "build/esm/index.js",
"module": "build/esm/index.js",
"type": "module",
"unpkg": "build/Tone.js",
"types": "build/esm/index.d.ts",
"files": [
"README.md",
"LICENSE.md",
"build",
"docs",
"Tone"
],
"scripts": {
"build": "npm run increment && rm -rf build && npm run ts:build && npm run webpack:build",
"codecov": "codecov",
"docs": "node scripts/generate_docs.cjs",
"docs:json": "cross-var typedoc --options \"./scripts/typedoc.json\" --json \"$npm_config_docs_json\"",
"increment": "node scripts/increment_version.cjs",
"karma": "cross-var karma start ./test/karma.conf.cjs --single-run --file $npm_config_file --dir $npm_config_dir",
"karma:browser": "cross-var karma start ./test/karma.conf.cjs --auto-watch --browsers OnlineChrome --file $npm_config_file --dir $npm_config_dir",
"karma:watch": "cross-var karma start ./test/karma.conf.cjs --auto-watch --file $npm_config_file --dir $npm_config_dir",
"lint": "eslint --ignore-pattern ./Tone/**/*.test.ts --ext ts ./Tone",
"lint:fix": "eslint --ext ts --fix ./Tone",
"scratch": "webpack -w --env scratch=1 --mode=development",
"test": "npm run karma",
"test:browser": "npm run karma:browser",
"test:examples": "node ./test/scripts/test_examples.cjs",
"test:html": "node ./test/scripts/test_html.cjs",
"test:node": "node ./test/scripts/node_test.cjs",
"test:readme": "node ./test/scripts/test_readme.cjs",
"test:travis": "npm run build && npm run lint && npm run test",
"test:watch": "npm run karma:watch",
"ts:build": "tsc --project ./scripts/tsconfig.build.json",
"watch": "tsc --watch",
"webpack:watch": "webpack -w --env production=1 --mode=development --config ./webpack.config.cjs",
"webpack:build": "webpack --env production=1 --config ./webpack.config.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/Tonejs/Tone.js.git"
},
"keywords": [
"Web Audio",
"Web Audio API",
"Synthesis",
"Playback",
"Effect",
"Instrument",
"DSP",
"Signal Processing",
"Interactive Music"
],
"author": "Yotam Mann (https://yotammann.info/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tonejs/Tone.js/issues"
},
"devDependencies": {
"@tonejs/plot": "0.0.35",
"@types/chai": "^4.3.0",
"@types/mocha": "^5.2.6",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"async": "^3.2.2",
"chai": "^4.3.4",
"codecov": "^3.8.3",
"cross-var": "^1.1.0",
"eslint": "^7.32.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-jsdoc": "^36.1.1",
"fs-extra": "^8.1.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^13.0.2",
"jsdom": "^16.7.0",
"karma": "^6.3.9",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.5.2",
"mocha": "^9.1.3",
"semver": "^5.7.1",
"showdown": "^2.0.0-alpha",
"teoria": "^2.5.0",
"tmp-promise": "^2.1.1",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^4.4.4",
"ua-parser-js": "^0.7.31",
"webpack": "^5.65.0",
"webpack-cli": "^4.10.0",
"yargs": "^17.3.0"
},
"dependencies": {
"standardized-audio-context": "^25.3.29",
"tslib": "^2.3.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"useTabs": true,
"singleQuote": false
}
}