forked from sad-systems/a-tracktor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.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
{
"name": "@sad-systems/a-tracktor",
"version": "1.1.3",
"description": "The library of widgets for visualizing audio data.",
"main": "lib.bundle.js",
"module": "lib.js",
"license": "ISC",
"author": "MrDigger <[email protected]> (http://sad-systems.ru)",
"homepage": "https://github.com/sad-systems/a-tracktor",
"repository": {
"type": "git",
"url": "https://github.com/sad-systems/a-tracktor.git"
},
"keywords": [
"web",
"audio",
"analyzer",
"javascript",
"widget",
"microphone"
],
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.demo.config.js",
"build": "cross-env NODE_ENV=production webpack && yarn make-declarations && yarn docs && yarn build-demo",
"build-demo": "cross-env NODE_ENV=production webpack --config webpack.demo.config.js",
"make-declarations": "tsc -d src/lib.ts --outDir dist",
"docs": "typedoc",
"npm-publish": "cd dist && npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^7.0.3",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"lodash": "^4.17.11",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"ts-loader": "^5.1.1",
"typedoc": "^0.20.10",
"typescript": "^3.0.3",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^5.7.3"
}
}