-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
58 lines (58 loc) · 2.3 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
{
"name": "xaringanExtra",
"version": "0.1.0",
"description": "Extras And Addons for Xaringan Slides",
"main": "index.js",
"scripts": {
"lint": "standard inst/*/*.js",
"lint:fix": "standard --fix inst/*/*.js",
"copy": "npm run copy:tone && npm run copy:himalaya && npm run copy:js-cookie && npm run copy:tachyons && npm run copy:clipboard && npm run copy:fitvids && npm run copy:shareon && npm run copy:peerjs && npm run copy:markjs && npm run copy:fabric && npm run copy:freezeframe",
"copy:tone": "cpy 'node_modules/tone/build/Tone.js' inst/jslib/tone/",
"copy:himalaya": "cpy 'node_modules/himalaya/docs/dist/himalaya.js*' inst/jslib/himalaya/",
"copy:js-cookie": "cpy 'node_modules/js-cookie/src/js.cookie.js' inst/jslib/js-cookie/",
"copy:tachyons": "cpy 'node_modules/tachyons/css/*.css' inst/jslib/tachyons",
"copy:clipboard": "cpy 'node_modules/clipboard/dist/*.js' inst/jslib/clipboard",
"copy:fitvids": "cpy 'node_modules/fitvids/dist/fitvids.min.js' inst/jslib/fitvids",
"copy:shareon": "cpy 'node_modules/shareon/dist/shareon.min.*' inst/jslib/shareon",
"copy:peerjs": "cpy 'node_modules/peerjs/dist/peerjs.min.*' inst/jslib/peerjs",
"copy:fabric": "cpy 'node_modules/fabric/dist/*.js' inst/jslib/fabric",
"copy:markjs": "cpy 'node_modules/mark.js/dist/mark.min.js' inst/jslib/markjs",
"copy:freezeframe": "cpy 'node_modules/freezeframe/dist/freezeframe.min.js' inst/jslib/freezeframe",
"build": "npm run copy && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadenbuie/xaringanExtra.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gadenbuie/xaringanExtra/issues"
},
"homepage": "https://github.com/gadenbuie/xaringanExtra#readme",
"standard": {
"ignore": [
"inst/slide-tone/tone.js",
"inst/text-poster/text-poster.js",
"inst/jslib/*"
]
},
"devDependencies": {
"cpy-cli": "^4.1.0",
"standard": "^14.3.4"
},
"dependencies": {
"clipboard": "^2.0.6",
"fabric": "^5.2.1",
"fitvids": "^2.1.1",
"freezeframe": "^5.0.2",
"himalaya": "^1.1.0",
"js-cookie": "^2.2.1",
"mark.js": "^8.11.1",
"peerjs": "^1.3.1",
"shareon": "^1.4.1",
"tachyons": "^4.12.0",
"tone": "^13.8.34"
}
}