forked from azeem/webvs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "webvs",
"version": "3.0.0",
"description": "Audio Visualization rendering library",
"main": "dist/webvs.node.js",
"types": "dist/index.d.ts",
"scripts": {
"build-all": "cross-env TARGET=all webpack",
"build-web": "cross-env TARGET=web webpack",
"build-doc": "typedoc --theme minimal --mode file --name Webvs --module commonjs --exclude node_modules --hideGenerator --out ./doc src",
"dev": "npm run clean && cross-env TARGET=dev webpack-serve",
"func-test": "karma start",
"unit-test": "cross-env TARGET=cjs mocha-webpack \"./test/unit/**/*.ts\"",
"lint": "tslint -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"clean": "shx rm -rf ./doc ./dist ./coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/azeem/webvs.git"
},
"author": "Azeem Arshad",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "517cf627b48067e5de484927d021fb95b3f2102c",
"bugs": {
"url": "https://github.com/azeem/webvs/issues"
},
"dependencies": {
"eventemitter3": "^3.0.1",
"lodash-es": "^4.17.8",
"stats.js": "*"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/lodash-es": "^4.17.0",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"inject-loader": "^3.0.1",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^2.0.9",
"mocha": "^5.0.1",
"mocha-webpack": "^1.0.1",
"npm-run-all": "^4.1.2",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.4",
"seedrandom": "^2.4.3",
"shx": "^0.2.2",
"ts-loader": "^3.5.0",
"ts-mockito": "^2.3.0",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typemoq": "^2.1.0",
"typescript": "^2.7.1",
"webpack": "^3.11.0",
"webpack-serve": "^0.1.5"
}
}