-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "pulse-editor",
"version": "1.1.0",
"description": "A React markdown editor, extensible and fully customizable.",
"keywords": [
"Platzi",
"markdown",
"react",
"editor",
"gfm",
"pfm"
],
"main": "./index.js",
"homepage": "https://github.com/PlatziDev/pulse-editor",
"repository": "PlatziDev/pulse-editor",
"bugs": "https://github.com/PlatziDev/pulse-editor/issues",
"author": [
{
"name": "Sergio Daniel Xalambrí",
"email": "[email protected]",
"url": "https://sergio.xalambri.xyz"
}
],
"license": "MIT",
"files": [
"built",
"buttons.js",
"index.js",
"utils.js"
],
"scripts": {
"prepublish": "npm run build",
"build": "babel ./src --out-dir ./built",
"lint": "standard './src/**/*.js' './examples/**/*.js'"
},
"directories": {
"lib": "./built"
},
"dependencies": {
"@platzi/markdown": "1.2.0",
"@platzi/react-markdown": "1.0.4",
"immutable": "^3.8.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-textarea-autosize": "^4.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"standard": "10.0.2"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**"
]
}
}