-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 906 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
34
35
36
{
"name": "react-markdown-quiz",
"version": "0.7.2",
"description": "Make quizzes from markdown files",
"main": "./lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/blueflag/react-markdown-quiz.git"
},
"bugs": {
"url": "https://github.com/blueflag/react-markdown-quiz/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"preversion": "yarn run build",
"build": "yarn babel src -d lib",
"dev": "yarn babel src -d lib --watch",
"watch": "yarn run build -- -w"
},
"author": "Allan Hortle",
"license": "ISC",
"dependencies": {
"create-react-class": "^15.6.2",
"immutable": "^3.7.6",
"markdown": "^0.5.0",
"yaml-front-matter": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-blueflag": "^0.6.0",
"react": "^16.0.0"
}
}