-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "canvas-recorder",
"version": "1.8.0",
"description": "Browserside tool to record canvas animations frame by frame.",
"types": "./",
"main": "./",
"repository": {
"type": "git",
"url": "https://github.com/MathiasPaumgarten/canvas-recorder"
},
"scripts": {
"build": "tsc --p tsconfig.json",
"test-files": "npm run build && browserify dist/tests/tests.js > dist/tests/bundle.js",
"test": "npm run test-files && karma start karma.conf.js",
"push": "npm run build && cp ./dist/src/* ./ && npm publish && npm run clean",
"clean": "rm gl.d.ts gl.js index.d.ts index.js shared.d.ts shared.js"
},
"bin": {
"canvas-recorder": "bin/index.js",
"ffmpy": "bin/index.js"
},
"keywords": [
"animation",
"canvas",
"record",
"sequence",
"webgl"
],
"author": "Mathias Paumgarten",
"license": "MIT",
"dependencies": {
"commander": "^2.20.0",
"file-saver": "^2.0.2",
"jszip": "^3.2.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/a-big-triangle": "^1.0.0",
"@types/expect.js": "^0.3.29",
"@types/file-saver": "^2.0.1",
"@types/gl-shader": "^4.2.0",
"@types/jszip": "^3.1.6",
"@types/lodash": "^4.14.135",
"@types/mocha": "^5.2.7",
"a-big-triangle": "^1.0.3",
"browserify": "^16.2.3",
"expect.js": "^0.3.1",
"gl-shader": "^4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-expect": "^1.1.3",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^6.1.4",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
}
}