-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
113 lines (113 loc) · 3.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@the-grid/ed",
"author": "Forrest Oliphant, The Grid",
"license": "MIT",
"version": "2.1.3",
"description": "the grid api with prosemirror",
"main": "dist/ed.js",
"scripts": {
"start": "export DEV=true; webpack-dev-server --inline --host 0.0.0.0",
"babel": "mkdir -p dist && babel src --out-dir dist",
"copycss": "(cd src && rsync -R -v **/*.css ../dist)",
"build": "npm run clean; webpack; npm run babel; npm run copycss",
"builddemo": "npm run clean; export DEMO=true; webpack",
"clean": "rm -rf dist",
"test": "npm run lint && npm run karma",
"lint": "eslint src demo test",
"lintfix": "eslint src demo test --fix",
"karma": "karma start",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-grid/ed.git"
},
"bugs": {
"url": "https://github.com/the-grid/ed/issues"
},
"homepage": "https://github.com/the-grid/ed#readme",
"dependencies": {
"@the-grid/ced": "0.1.3",
"@the-grid/ed-location": "2.0.1",
"@the-grid/ed-userhtml": "0.3.0",
"crel": "3.0.0",
"he": "1.1.0",
"imgflo-url": "1.2.0",
"lodash": "4.17.4",
"prosemirror-commands": "0.17.1",
"prosemirror-dropcursor": "0.17.2",
"prosemirror-example-setup": "0.17.0",
"prosemirror-history": "0.17.0",
"prosemirror-inputrules": "0.17.0",
"prosemirror-keymap": "0.17.0",
"prosemirror-menu": "0.17.0",
"prosemirror-model": "0.17.0",
"prosemirror-schema-basic": "0.17.0",
"prosemirror-schema-list": "0.17.0",
"prosemirror-state": "0.17.0",
"prosemirror-transform": "0.17.0",
"prosemirror-view": "0.17.2",
"react": "15.4.2",
"react-dom": "15.4.2",
"rebass": "0.3.3",
"uuid": "3.0.1"
},
"widgets": {
"@the-grid/ced": {
"include": [
"/editor/index.html",
"/lib/mount.js",
"/lib/mount.js.map"
]
},
"@the-grid/ed-location": {
"include": [
"/edit.html",
"/ed-location.js"
]
},
"@the-grid/ed-userhtml": {
"include": [
"/edit.html",
"/dist/edit.js"
]
}
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.18.0",
"bob-ross-lipsum": "1.1.1",
"chai": "3.5.0",
"copy-webpack-plugin": "4.0.1",
"eslint": "3.13.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-react": "6.9.0",
"eslint-plugin-standard": "2.0.1",
"estraverse": "4.2.0",
"estraverse-fb": "1.3.1",
"gremlins.js": "marmelab/gremlins.js",
"html-flatten": "0.3.6",
"json-loader": "0.5.4",
"karma": "1.4.0",
"karma-browserstack-launcher": "1.1.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.1",
"mocha": "3.2.0",
"mocha-loader": "1.1.0",
"raw-loader": "0.5.1",
"style-loader": "0.13.1",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
}
}