forked from yishn/tikzcd-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "tikzcd-editor",
"version": "0.5.1",
"description": "A simple editor for creating commutative diagrams.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yishn/tikzcd-editor.git"
},
"keywords": [
"math",
"tikzcd",
"tikz",
"latex",
"diagram",
"editor",
"mathematics"
],
"author": "Yichuan Shen",
"license": "MIT",
"homepage": "https://github.com/yishn/tikzcd-editor",
"bugs": {
"url": "https://github.com/yishn/tikzcd-editor/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"copy-text-to-clipboard": "^1.0.3",
"jsx-tikzcd": "^0.2.1",
"preact": "^8.2.5"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"http-server": "^0.10.0",
"webpack": "^3.7.1"
},
"scripts": {
"start": "http-server",
"build": "webpack --progress -p",
"watch": "webpack --progress --watch"
}
}