-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 859 Bytes
/
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
{
"author": {
"name": "Yaffle"
},
"bugs": {
"url": "https://github.com/Yaffle/mathml-to-clipboard/issues"
},
"name": "mathml-to-clipboard",
"description": "A copy event handler for a web application that transforms MathML into AsciiMath and places it into the clipboard.",
"homepage": "https://github.com/Yaffle/mathml-to-clipboard#readme",
"version": "1.0.4",
"license": "ISC",
"main": "dist/main.js",
"devDependencies": {
"mathml-to-asciimath": "latest",
"browserify": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yaffle/mathml-to-clipboard.git"
},
"scripts": {
"build": "browserify mathml-to-clipboard.js > dist/main.js"
},
"browser": {
"mathml-to-asciimath": "./mathml-to-asciimath.js"
},
"keywords": [
"mathml",
"clipboard",
"asciimath"
]
}