-
-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 991 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 991 Bytes
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": "mdx-deck-code-surfer",
"version": "0.6.0",
"private": false,
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel ./src -d ./dist --ignore test.js",
"build:watch": "yarn build --watch"
},
"dependencies": {
"code-surfer": "^0.6.0",
"memoize-one": "^4.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"mdx-deck": "^2.0.5"
},
"peerDependencies": {
"mdx-deck": ">=2.0.0",
"react": ">=15.0.0",
"emotion-theming": ">=10.0.0"
},
"author": "pomber",
"license": "MIT",
"repository": "https://github.com/pomber/code-surfer",
"description": "React component for scrolling, zooming and highlighting code.",
"keywords": [
"mdx",
"mdx-deck",
"slides",
"react",
"code",
"highlight",
"token",
"prism",
"ractjs"
]
}