-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
106 lines (106 loc) · 2.89 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
{
"name": "ritzy",
"version": "0.1.4",
"description": "Ritzy Collaborative Web-based Rich Text Editor",
"keywords": [
"editor",
"text editor",
"rich text",
"richtext",
"react",
"wysiwyg",
"wysiwym"
],
"homepage": "http://ritzyed.github.io/ritzy",
"bugs": "https://github.com/ritzyed/ritzy/issues",
"license": "Apache-2.0",
"author": "Raman Gupta <[email protected]> (https://github.com/rocketraman/)",
"files": [
"dist/",
"docs/",
"lib/"
],
"main": "dist/ritzy.js",
"repository": "ritzyed/ritzy",
"engines": {
"node": ">= 0.12",
"npm": ">= 2.11"
},
"dependencies": {
"alt": "0.17.1",
"classnames": "2.1.3",
"eventemitter3": "1.1.1",
"express": "4.13.1",
"lodash": "3.10.0",
"mousetrap": "1.5.3",
"opentype.js": "0.4.9",
"react": "0.13.3",
"react-spinkit": "1.1.2",
"redis": "^0.12.1",
"swarm": "0.3.25",
"swarm-restapi": "0.3.24",
"webfontloader": "1.6.4",
"ws": "0.7.2"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
"blacklisted-gulp": "^0.0.3",
"browser-sync": "^2.8.2",
"chai": "^3.2.0",
"css-loader": "^0.15.6",
"del": "^1.2.0",
"eslint": "^1.1.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.2.2",
"espree": "^2.2.4",
"file-loader": "^0.8.4",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-babel": "^5.2.0",
"gulp-cache": "^0.2.10",
"gulp-changed": "^1.3.0",
"gulp-csscomb": "^3.0.6",
"gulp-esdoc": "0.0.3",
"gulp-gh-pages": "^0.5.2",
"gulp-header": "^1.2.2",
"gulp-if": "^1.2.5",
"gulp-load-plugins": "^1.0.0-rc",
"gulp-replace": "^0.5.4",
"gulp-size": "^1.3.0",
"gulp-util": "^3.0.6",
"jsdom": "^3.1.2",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.6.0",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"minimist": "^1.1.3",
"mocha": "^2.2.5",
"npm": "^2.11.3",
"psi": "^1.0.6",
"react-tools": "^0.13.3",
"run-sequence": "^1.1.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.11.0"
},
"scripts": {
"start": "gulp",
"test": "mocha --compilers js:compiler.js src/**/*-test.js",
"lint": "eslint src/",
"lintdev": "eslint -c .eslintdevrc gulpfile.js webpack.config.js extractapi.js",
"testb": "karma start",
"check-blacklisted": "blacklisted-gulp",
"preversion": "node extractapi.js > docs/API.adoc && asciidoctor -b docbook -o - README.adoc | pandoc -o README.md -f docbook -t markdown_github -",
"postversion": "git push && git push --tags",
"prepublish": "gulp docs && gulp dist"
}
}