forked from ProseMirror/prosemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "prosemirror",
"version": "0.8.1",
"description": "Well-defined WYSIWYG editor",
"main": "dist/edit/index.js",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "[email protected]",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror.git"
},
"dependencies": {
"browserkeymap": "^2.0.0",
"subscription": "^3.0.0",
"markdown-it": "^6.0.4"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.3.0",
"blint": "^0.5.0",
"browserify": "^13.0.1",
"jsdom": "^8.0.4",
"moduleserve": "^0.7.0",
"punycode": "^1.4.0",
"rimraf": "^2.5.0",
"source-map-support": "^0.2.10",
"uglifyjs": "^2.4.10",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"babel-plugin-transform-proto-to-assign": "^6.9.0",
"babel-plugin-transform-es2015-object-super": "^6.8.0"
},
"scripts": {
"test": "node src/test/run.js",
"demo": "moduleserve demo --port 9090 --host 0.0.0.0",
"dist": "babel -d dist src",
"dist-watch": "babel -w -d dist src",
"lint": "blint --browser --ecmaVersion 6 --forbidSemicolons src || true",
"prepublish": "rimraf dist && babel -d dist src"
}
}