-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.18 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
{
"name": "webcg-adobe-animate-adapter",
"version": "1.3.0",
"description": "Adapter for Adobe Animate HTML5 Canvas graphic overlays for WebCG and CasparCG",
"browser": "dist/webcg-adobe-animate-adapter.umd.js",
"scripts": {
"prebuild": "./scripts/prebuild.sh",
"build": "rollup -c",
"postbuild": "./scripts/postbuild.sh",
"predev": "./scripts/prebuild.sh",
"dev": "rollup -c -w",
"test": "standard && karma start karma.conf.js",
"demo": "node server.js",
"release": "npm run test && standard-version -a",
"version": "echo \"Error: use npm run release\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indr/webcg-adobe-animate-adapter.git"
},
"keywords": [
"adobe animate",
"casparcg",
"html5 canvas",
"webcg"
],
"author": "Reto Inderbitzin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/indr/webcg-adobe-animate-adapter/issues"
},
"homepage": "https://github.com/indr/webcg-adobe-animate-adapter#readme",
"devDependencies": {
"chai": "4.2.0",
"express": "4.17.1",
"karma": "4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "2.0.1",
"karma-mocha": "1.3.0",
"karma-rollup-preprocessor": "7.0.3",
"karma-sinon-chai": "2.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"mocha": "7.0.0",
"rollup": "1.29.1",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"sinon": "8.1.1",
"sinon-chai": "3.4.0",
"standard": "14.3.1",
"standard-version": "7.1.0",
"webcg-devtools": "^1.5.0",
"webcg-framework": "^2.5.0"
},
"standard": {
"globals": [
"assert",
"beforeEach",
"describe",
"expect",
"it",
"sinon"
],
"ignore": [
"dist/",
"docs/"
]
},
"standard-version": {
"scripts": {
"prerelease": "rm -rf dist/*",
"postbump": "npm run build && git add .",
"postchangelog": "sed -i '0,/Change Log/{s/Change Log/Changelog/}' CHANGELOG.md"
}
}
}