-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.29 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
{
"name": "jsx-tikzcd",
"version": "0.5.1",
"description": "Render tikzcd diagrams with JSX.",
"main": "./dist/jsx-tikzcd",
"module": "./src/index",
"repository": {
"type": "git",
"url": "git+https://github.com/yishn/jsx-tikzcd.git"
},
"keywords": [
"tikzcd",
"react",
"diagram",
"math",
"latex",
"tex"
],
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/yishn/jsx-tikzcd/issues"
},
"homepage": "https://github.com/yishn/jsx-tikzcd",
"babel": {
"presets": [
[
"env",
{
"modules": false
}
],
"stage-1"
]
},
"ava": {
"babel": {
"presets": [
"env",
"stage-1"
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
}
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"rollup": "^0.47.6",
"rollup-plugin-babel": "^3.0.7",
"rollup-watch": "^4.3.1"
},
"scripts": {
"test": "ava",
"build": "rollup -c",
"watch": "rollup -c -w"
}
}